projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Removed obsolete check
[wxWidgets.git]
/
src
/
univ
/
combobox.cpp
diff --git
a/src/univ/combobox.cpp
b/src/univ/combobox.cpp
index 4248176caaa788cb021771d478424cd2a6a929e8..4c122a19045fbb603486845e89a211a0afc1ad63 100644
(file)
--- a/
src/univ/combobox.cpp
+++ b/
src/univ/combobox.cpp
@@
-833,7
+833,7
@@
int wxComboBox::DoInsert(const wxString& item, int pos)
if (pos == GetCount())
return DoAppend(item);
- GetLBox()->Insert(
1, &
item, pos);
+ GetLBox()->Insert(item, pos);
return pos;
}