]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/DialogUnits.py
mention ShouldInheritColours() change
[wxWidgets.git] / wxPython / demo / DialogUnits.py
index 7f369dd40ffcbe3692a0eec00a6e4001235d0a40..78974eb67625e6b46da2be9f4b931bd6dbcc3607 100644 (file)
@@ -87,14 +87,14 @@ if __name__ == "__main__":
         def OnInit(self):
 
             # Create an instance of our customized Frame class
-            frame = MyFrame(NULL, -1, "This is a test")
-            frame.Show(true)
+            frame = MyFrame(None, -1, "This is a test")
+            frame.Show(True)
 
             # Tell wxWindows that this is our main window
             self.SetTopWindow(frame)
 
             # Return a success flag
-            return true
+            return True
 
 
     app = MyApp(0)     # Create an instance of the application class
@@ -107,7 +107,7 @@ if __name__ == "__main__":
 def runTest(frame, nb, log):
     win = MyFrame(frame, -1, "This is a test")
     frame.otherWin = win
-    win.Show(true)
+    win.Show(True)
 
 
 overview = """\