projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixed comment bug [ 1390056 ] Wrong Documentation for TransferFromWindow
[wxWidgets.git]
/
wxPython
/
demo
/
ComboBox.py
diff --git
a/wxPython/demo/ComboBox.py
b/wxPython/demo/ComboBox.py
index 9cebf4211353be64ab5230f539faeb3348867d32..4ab15a6467f257830acbd271bfe97a26420f86ea 100644
(file)
--- a/
wxPython/demo/ComboBox.py
+++ b/
wxPython/demo/ComboBox.py
@@
-40,7
+40,7
@@
class TestComboBox(wx.Panel):
# This combobox is created with no values initially.
cb = wx.ComboBox(
# This combobox is created with no values initially.
cb = wx.ComboBox(
- self, 501, "default value", (90, 80), (95, -1), [], wx.CB_
SIMPLE
)
+ self, 501, "default value", (90, 80), (95, -1), [], wx.CB_
DROPDOWN
)
# Here we dynamically add our values to the second combobox.
for item in sampleList:
# Here we dynamically add our values to the second combobox.
for item in sampleList: