From: Mattia Barbon Date: Mon, 12 May 2003 19:54:01 +0000 (+0000) Subject: Compilation fix. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3f85391ea7ec33be616af1a323e2d5c2e0f6e74f Compilation fix. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20611 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/univ/combobox.cpp b/src/univ/combobox.cpp index 4248176caa..4c122a1904 100644 --- 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; }