X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/45cf74cccf416870b943e37ea8af482ffe2d7680..99109c0ff1c29c7c977c073f9f8e0bf4b8e728f7:/wxPython/demo/XmlResourceSubclass.py?ds=sidebyside diff --git a/wxPython/demo/XmlResourceSubclass.py b/wxPython/demo/XmlResourceSubclass.py index 285e834ef5..6e975e538f 100644 --- a/wxPython/demo/XmlResourceSubclass.py +++ b/wxPython/demo/XmlResourceSubclass.py @@ -14,8 +14,7 @@ resourceText = r''' 200,100 - + 10,10 @@ -48,7 +47,7 @@ class MyCustomPanel(wx.Panel): # On OSX the EVT_SIZE happens before EVT_WINDOW_CREATE !?! # so give it another kick wx.CallAfter(self.OnSize, None) - + evt.Skip() def OnSize(self, evt): if hasattr(self, 't'): @@ -80,9 +79,7 @@ class TestPanel(wx.Panel): res.LoadFromString(resourceText) # Now create a panel from the resource data - #panel = res.LoadPanel(self, "MyPanel") - panel = MyCustomPanel() - panel.Create(self, -1) + panel = res.LoadPanel(self, "MyPanel") # and do the layout sizer = wx.BoxSizer(wx.VERTICAL)