From 3f85391ea7ec33be616af1a323e2d5c2e0f6e74f Mon Sep 17 00:00:00 2001 From: Mattia Barbon Date: Mon, 12 May 2003 19:54:01 +0000 Subject: [PATCH] Compilation fix. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20611 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/univ/combobox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.50.0