]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/CalendarCtrl.py
Ensure that runTest is not modal, even when a required module is not
[wxWidgets.git] / wxPython / demo / CalendarCtrl.py
index f8e5ba78c1bf724f1bc21a8a9df15db235e70fe4..798b155cc18a9eefd2a2d790a36ba6d3884abade 100644 (file)
@@ -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:])