]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_app_ex.py
Allow for Cmd-click on wxMac
[wxWidgets.git] / wxPython / src / _app_ex.py
index 5ea24fb4e80fd536d073347ac6aa7444db3ff015..feb4b95715997588d92c52f674184d175d36cab6 100644 (file)
@@ -60,6 +60,10 @@ class PyOnDemandOutputWindow:
             wx.CallAfter(self.frame.Close)
 
 
+    def flush(self):
+        pass
+    
+
 
 #----------------------------------------------------------------------
 
@@ -86,7 +90,7 @@ class App(wx.PyApp):
     ``self.SetTopWindow(frame)``.
 
     :see: `wx.PySimpleApp` for a simpler app class that can be used
-    directly.
+           directly.
     """
     
     outputWindowClass = PyOnDemandOutputWindow
@@ -236,7 +240,6 @@ class PySimpleApp(wx.App):
         wx.App.__init__(self, redirect, filename, useBestVisual, clearSigInt)
         
     def OnInit(self):
-        wx.InitAllImageHandlers()
         return True