projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Unfortunatelly compiler does not know which bits play here and still warns about...
[wxWidgets.git]
/
wxPython
/
demo
/
SpinCtrl.py
diff --git
a/wxPython/demo/SpinCtrl.py
b/wxPython/demo/SpinCtrl.py
index 23d20cb31f7ed75eaf708562bc2c54e22f6b0e24..327bc1744196705601fbc0db687a89d0df179518 100644
(file)
--- a/
wxPython/demo/SpinCtrl.py
+++ b/
wxPython/demo/SpinCtrl.py
@@
-10,7
+10,7
@@
class TestPanel(wx.Panel):
self.count = 0
wx.StaticText(self, -1, "This example uses the wx.SpinCtrl control.", (45, 15))
- sc = wx.SpinCtrl(self, -1, "", (30, 50)
, (80, -1)
)
+ sc = wx.SpinCtrl(self, -1, "", (30, 50))
sc.SetRange(1,100)
sc.SetValue(5)