From: Robin Dunn Date: Mon, 12 Aug 2002 19:16:53 +0000 (+0000) Subject: wxPySimpleApp calls wxInitAllImageHandlers X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3fce70fbf5dc650636eb51a817c24e4fbb7ad5c8 wxPySimpleApp calls wxInitAllImageHandlers git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16469 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/_extras.py b/wxPython/src/_extras.py index 42a5e6f774..0e72a395d9 100644 --- a/wxPython/src/_extras.py +++ b/wxPython/src/_extras.py @@ -811,6 +811,7 @@ class wxPySimpleApp(wxApp): def __init__(self, flag=0): wxApp.__init__(self, flag) def OnInit(self): + wxInitAllImageHandlers() return true diff --git a/wxPython/src/msw/wx.py b/wxPython/src/msw/wx.py index e24903f359..99f4db2edf 100644 --- a/wxPython/src/msw/wx.py +++ b/wxPython/src/msw/wx.py @@ -1736,6 +1736,7 @@ class wxPySimpleApp(wxApp): def __init__(self, flag=0): wxApp.__init__(self, flag) def OnInit(self): + wxInitAllImageHandlers() return true