X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b36e08d0867cf3f6a5a286ce145c0fb80746c290..18591d70d9f37ca7af5208c68d4647192b07740d:/src/palmos/choice.cpp diff --git a/src/palmos/choice.cpp b/src/palmos/choice.cpp index d9ba679dd6..7fbc1096f1 100644 --- a/src/palmos/choice.cpp +++ b/src/palmos/choice.cpp @@ -85,7 +85,7 @@ wxEND_HANDLERS_TABLE() wxCONSTRUCTOR_4( wxChoice , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size ) #else -IMPLEMENT_DYNAMIC_CLASS(wxChoice, wxControl) +IMPLEMENT_DYNAMIC_CLASS(wxChoice, wxControlWithItems) #endif // ============================================================================ @@ -150,21 +150,19 @@ wxChoice::~wxChoice() // adding/deleting items to/from the list // ---------------------------------------------------------------------------- -int wxChoice::DoAppend(const wxString& item) +int wxChoice::DoInsertItems(const wxArrayStringsAdapter& items, + unsigned int pos, + void **clientData, + wxClientDataType type) { return 0; } -int wxChoice::DoInsert(const wxString& item, unsigned int pos) +void wxChoice::DoDeleteOneItem(unsigned int n) { - return 0; } -void wxChoice::Delete(unsigned int n) -{ -} - -void wxChoice::Clear() +void wxChoice::DoClear() { } @@ -216,15 +214,6 @@ void* wxChoice::DoGetItemClientData(unsigned int n) const return (void *)NULL; } -void wxChoice::DoSetItemClientObject(unsigned int n, wxClientData* clientData ) -{ -} - -wxClientData* wxChoice::DoGetItemClientObject(unsigned int n) const -{ - return (wxClientData *)DoGetItemClientData(n); -} - // ---------------------------------------------------------------------------- // wxMSW specific helpers // ----------------------------------------------------------------------------