Don't use the deprecated wx.PySimpleApp class
authorAntonio Ospite <ao2@ao2.it>
Fri, 3 Oct 2014 09:59:16 +0000 (11:59 +0200)
committerAntonio Ospite <ao2@ao2.it>
Fri, 3 Oct 2014 10:59:36 +0000 (12:59 +0200)
Fix this warning:

./PoPiPaint.py:28: wxPyDeprecationWarning: Using deprecated class PySimpleApp.
  wx.PySimpleApp.__init__(self, *args, **kwargs)

PoPiPaint.py

index 090126f..683f2a1 100755 (executable)
@@ -22,10 +22,10 @@ import wx
 import CanvasFrame
 
 
 import CanvasFrame
 
 
-class PoPiPaApp(wx.PySimpleApp):
+class PoPiPaApp(wx.App):
     def __init__(self, *args, **kwargs):
         self.base_image = kwargs.pop('base_image', None)
     def __init__(self, *args, **kwargs):
         self.base_image = kwargs.pop('base_image', None)
-        wx.PySimpleApp.__init__(self, *args, **kwargs)
+        wx.App.__init__(self, *args, **kwargs)
 
     def OnInit(self):
         # We do not want a resizeable frame!
 
     def OnInit(self):
         # We do not want a resizeable frame!