projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
netutils code is MSW-only
[wxWidgets.git]
/
wxPython
/
demo
/
wxSpinCtrl.py
diff --git
a/wxPython/demo/wxSpinCtrl.py
b/wxPython/demo/wxSpinCtrl.py
index f373c82aa03f13d69fa35c0f91449101452ef5d5..2e57bca067124538ab8cbe84bfb6ef0210977e44 100644
(file)
--- a/
wxPython/demo/wxSpinCtrl.py
+++ b/
wxPython/demo/wxSpinCtrl.py
@@
-1,8
+1,6
@@
from wxPython.wx import *
from wxPython.wx import *
-import string
-
#----------------------------------------------------------------------
class TestPanel(wxPanel):
#----------------------------------------------------------------------
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 = wxSpinCtrl(self, -1, "", wxPoint(30, 50), wxSize(80, -1))
sc.SetRange(1,100)
sc.SetValue(5)
- #sc.Enable(
f
alse)
+ #sc.Enable(
F
alse)
#----------------------------------------------------------------------
#----------------------------------------------------------------------
@@
-36,3
+34,12
@@
def runTest(frame, nb, log):
overview = """\
"""
overview = """\
"""
+
+
+
+
+
+if __name__ == '__main__':
+ import sys,os
+ import run
+ run.main(['', os.path.basename(sys.argv[0])])