]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/wxSpinCtrl.py
SWIGged updates for wxMac
[wxWidgets.git] / wxPython / demo / wxSpinCtrl.py
index 7729b88b5d3fadd32cf9eebe43324f68c2372ded..164397d1a005552eb300b4d1acda21bb2d104d0f 100644 (file)
@@ -1,8 +1,6 @@
 
 from wxPython.wx import *
 
-import string
-
 #----------------------------------------------------------------------
 
 class TestPanel(wxPanel):
@@ -17,6 +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)
 
 
 #----------------------------------------------------------------------