projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6bb000e
)
Fixed style setting
author
Robin Dunn
<robin@alldunn.com>
Mon, 1 Sep 2003 19:54:41 +0000
(19:54 +0000)
committer
Robin Dunn
<robin@alldunn.com>
Mon, 1 Sep 2003 19:54:41 +0000
(19:54 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23352
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
wxPython/demo/wxSingleChoiceDialog.py
patch
|
blob
|
blame
|
history
diff --git
a/wxPython/demo/wxSingleChoiceDialog.py
b/wxPython/demo/wxSingleChoiceDialog.py
index aa649eb750b2c627079c52b4bc0753ebe4452a1f..c97ec63c6385cc6eeabff09190b5f12a3a0510cc 100644
(file)
--- a/
wxPython/demo/wxSingleChoiceDialog.py
+++ b/
wxPython/demo/wxSingleChoiceDialog.py
@@
-6,7
+6,7
@@
from wxPython.wx import *
def runTest(frame, nb, log):
dlg = wxSingleChoiceDialog(frame, 'Test Single Choice', 'The Caption',
['zero', 'one', 'two', 'three', 'four', 'five',
- 'six', 'seven', 'eight'], wxOK|wxCANCEL)
+ 'six', 'seven', 'eight'], wx
DEFAULT_DIALOG_STYLE|wx
OK|wxCANCEL)
if dlg.ShowModal() == wxID_OK:
log.WriteText('You selected: %s\n' % dlg.GetStringSelection())
dlg.Destroy()