]> git.saurik.com Git - wxWidgets.git/commitdiff
Removed calls to wx.InitAllImageHandlers.
authorRobin Dunn <robin@alldunn.com>
Mon, 17 May 2004 19:21:56 +0000 (19:21 +0000)
committerRobin Dunn <robin@alldunn.com>
Mon, 17 May 2004 19:21:56 +0000 (19:21 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27324 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/demo/Main.py
wxPython/demo/run.py

index 0eeda26ad1d38be413e94bd5ed0e83d7cac0c1d2..7cd330ffa47696085b8d9b6d0586608b4069b503 100644 (file)
@@ -921,14 +921,12 @@ class MyApp(wx.App):
         the main frame when it is time to do so.
         """
 
-        wx.InitAllImageHandlers()
-
         # Normally when using a SplashScreen you would create it, show
         # it and then continue on with the applicaiton's
         # initialization, finally creating and showing the main
         # application window(s).  In this case we have nothing else to
         # do so we'll delay showing the main frame until later (see
-        # OnClose above) so the users can see the SplashScrren effect.        
+        # OnClose above) so the users can see the SplashScreen effect.        
         splash = MySplashScreen()
         splash.Show()
 
index 9831c32c00128c24f6262ff39ddbd1b1a06a0856..8120b699e3db895a876db63c26365985f11d6ead 100755 (executable)
@@ -48,7 +48,6 @@ class RunDemoApp(wx.App):
 
 
     def OnInit(self):
-        wx.InitAllImageHandlers()
         wx.Log_SetActiveTarget(wx.LogStderr())
 
         self.SetAssertMode(assertMode)