diff --git a/wxPython/demo/Main.py b/wxPython/demo/Main.py index 0eeda26ad1..7cd330ffa4 100644 --- a/wxPython/demo/Main.py +++ b/wxPython/demo/Main.py @@ -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() diff --git a/wxPython/demo/run.py b/wxPython/demo/run.py index 9831c32c00..8120b699e3 100755 --- a/wxPython/demo/run.py +++ b/wxPython/demo/run.py @@ -48,7 +48,6 @@ class RunDemoApp(wx.App): def OnInit(self): - wx.InitAllImageHandlers() wx.Log_SetActiveTarget(wx.LogStderr()) self.SetAssertMode(assertMode)