Browse Source

remove deprecated parameter

David Rose 18 years ago
parent
commit
3dbf0ad308
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/showbase/EventManager.py

+ 1 - 1
direct/src/showbase/EventManager.py

@@ -120,7 +120,7 @@ class EventManager:
             if self.eventQueue == EventManager.EventQueue.getGlobalEventQueue():
                 # If we are using the global event queue, then we also
                 # want to use the global event handler.
-                self.eventHandler = EventManager.EventHandler.getGlobalEventHandler(self.eventQueue)
+                self.eventHandler = EventManager.EventHandler.getGlobalEventHandler()
             else:
                 # Otherwise, we need our own event handler.
                 self.eventHandler = EventManager.EventHandler(self.eventQueue)