]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/wxSpinCtrl.py
Removed deprecation warnings in OGL and Gizmos
[wxWidgets.git] / wxPython / demo / wxSpinCtrl.py
index f373c82aa03f13d69fa35c0f91449101452ef5d5..164397d1a005552eb300b4d1acda21bb2d104d0f 100644 (file)
@@ -1,8 +1,6 @@
 
 from wxPython.wx import *
 
-import string
-
 #----------------------------------------------------------------------
 
 class TestPanel(wxPanel):
@@ -17,7 +15,7 @@ class TestPanel(wxPanel):
         sc = wxSpinCtrl(self, -1, "", wxPoint(30, 50), wxSize(80, -1))
         sc.SetRange(1,100)
         sc.SetValue(5)
-        #sc.Enable(false)
+        #sc.Enable(False)
 
 
 #----------------------------------------------------------------------