git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3787
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// adding/deleting items to/from the list
// ----------------------------------------------------------------------------
// 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)
}
void wxChoice::Delete(int n)