X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/95bfd958bda8955ac81277c78e5627c926154f39..6a52ea5cb81dcd07c286d34b80945534780fe05f:/wxPython/demo/CalendarCtrl.py?ds=sidebyside diff --git a/wxPython/demo/CalendarCtrl.py b/wxPython/demo/CalendarCtrl.py index f8e5ba78c1..798b155cc1 100644 --- a/wxPython/demo/CalendarCtrl.py +++ b/wxPython/demo/CalendarCtrl.py @@ -17,7 +17,7 @@ class TestPanel(wx.Panel): self.Bind(wx.calendar.EVT_CALENDAR, self.OnCalSelected, id=cal.GetId()) - b = wx.Button(self, -1, "Destroy the Calendar", pos = (250, 50)) + b = wx.Button(self, -1, "Destroy the Calendar", pos = (275, 50)) self.Bind(wx.EVT_BUTTON, self.OnButton, id= b.GetId()) self.cal = cal @@ -27,8 +27,9 @@ class TestPanel(wx.Panel): self.OnChangeMonth() def OnButton(self, evt): - self.cal.Destroy() - self.cal = None + if self.cal is not None: + self.cal.Destroy() + self.cal = None def OnCalSelected(self, evt): self.log.write('OnCalSelected: %s\n' % evt.GetDate()) @@ -63,5 +64,5 @@ so I think both will stay in wxPython. if __name__ == '__main__': import sys,os import run - run.main(['', os.path.basename(sys.argv[0])]) + run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])