From 3fce70fbf5dc650636eb51a817c24e4fbb7ad5c8 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 12 Aug 2002 19:16:53 +0000 Subject: [PATCH] wxPySimpleApp calls wxInitAllImageHandlers git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16469 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/_extras.py | 1 + wxPython/src/msw/wx.py | 1 + 2 files changed, 2 insertions(+) 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 -- 2.45.2