]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_app_ex.py
Include wx/frame.h according to precompiled headers of wx/wx.h (with other minor...
[wxWidgets.git] / wxPython / src / _app_ex.py
index f08eef9f41b403e1d0dbcf5562db48ddae066af0..60ee313fea96b9e00d704540e636894115c2dfcb 100644 (file)
@@ -173,6 +173,15 @@ your Mac."""
         self._BootstrapApp()
 
 
+    def OnPreInit(self):
+        """
+        Things that must be done after _BootstrapApp has done its
+        thing, but would be nice if they were already done by the time
+        that OnInit is called.
+        """
+        wx.StockGDI._initStockObjects()
+        
+
     def __del__(self, destroy=wx.PyApp.__del__):
         self.RestoreStdio()  # Just in case the MainLoop was overridden
         destroy(self)