]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/wxCheckBox.py
fix text scrolling in GTK2 (patch 703988)
[wxWidgets.git] / wxPython / demo / wxCheckBox.py
index e2e81e3f2840ee5ee045df2e56b46e87bb039039..529de660bbbf476d73c4d508ccb3bd05968a2437 100644 (file)
@@ -11,7 +11,7 @@ class TestCheckBox(wxPanel):
         wxStaticText(self, -1, "This example uses the wxCheckBox control.",
                                wxPoint(10, 10))
 
-        cID = NewId()
+        cID = wxNewId()
         cb1 = wxCheckBox(self, cID,   "  Apples", wxPoint(65, 40), wxSize(150, 20), wxNO_BORDER)
         cb2 = wxCheckBox(self, cID+1, "  Oranges", wxPoint(65, 60), wxSize(150, 20), wxNO_BORDER)
         cb2.SetValue(True)
@@ -51,3 +51,11 @@ overview = """\
 A checkbox is a labelled box which is either on (checkmark is visible) or off (no checkmark).
 
 """
+
+
+
+if __name__ == '__main__':
+    import sys,os
+    import run
+    run.main(['', os.path.basename(sys.argv[0])])
+