From: Vadim Zeitlin Date: Fri, 1 Oct 1999 23:00:58 +0000 (+0000) Subject: fix for Append() bug for sorted comboboxes X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/def6fb9bd8ae91def693b8a30b9d6b5f20b5ce98 fix for Append() bug for sorted comboboxes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3787 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/choice.cpp b/src/msw/choice.cpp index 84d90c83b0..86bf29fc1e 100644 --- a/src/msw/choice.cpp +++ b/src/msw/choice.cpp @@ -89,9 +89,15 @@ bool wxChoice::Create(wxWindow *parent, // adding/deleting items to/from the list // ---------------------------------------------------------------------------- -void wxChoice::DoAppend(const wxString& item) +int wxChoice::DoAppend(const wxString& item) { - SendMessage(GetHwnd(), CB_ADDSTRING, 0, (LONG)item.c_str()); + int n = (int)SendMessage(GetHwnd(), CB_ADDSTRING, 0, (LONG)item.c_str()); + if ( n == CB_ERR ) + { + wxLogLastError("SendMessage(CB_ADDSTRING)"); + } + + return n; } void wxChoice::Delete(int n)