From b7aef858828222a05e57671fa01d3cac78aee3ac Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 17 May 2004 19:21:56 +0000 Subject: [PATCH] Removed calls to wx.InitAllImageHandlers. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27324 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/demo/Main.py | 4 +--- wxPython/demo/run.py | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) 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)