]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/wxCalendar.py
added safety check to wxWindow::ReleaseMouse
[wxWidgets.git] / wxPython / demo / wxCalendar.py
index 120ac91c7bc721d7be5f07f6362432d05054fb5d..962679a35105848c94a152a803c497466a3db849 100644 (file)
@@ -419,7 +419,7 @@ class PrintCalend:
         pdd.SetPrintData(self.printData)
         printer = wxPrinter(pdd)
         printout = SetPrintout(self)
-        frame = wxFrame(NULL, -1, "Test")
+        frame = wxFrame(None, -1, "Test")
         if not printer.Print(frame, printout):
             wxMessageBox("There was a problem printing.\nPerhaps your current printer is not set correctly?", "Printing", wxOK)
         else:
@@ -594,7 +594,7 @@ class SetPrintout(wxPrintout):
 
 class MyApp(wxApp):
     def OnInit(self):
-        frame = CalendFrame(NULL, -1, "Test Calendar")
+        frame = CalendFrame(None, -1, "Test Calendar")
         frame.Show(true)
         self.SetTopWindow(frame)
         return true