]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/choice.cpp
Don't needlessly indirect through NSNotificationCenter.
[wxWidgets.git] / src / palmos / choice.cpp
index e0b31045ce33a58484b73bb9878456ef8459def3..c6c100fc0ac104857341ffcbf4dd903e66e2361d 100644 (file)
@@ -25,8 +25,9 @@
 
 #if wxUSE_CHOICE
 
+#include "wx/choice.h"
+
 #ifndef WX_PRECOMP
-    #include "wx/choice.h"
     #include "wx/utils.h"
     #include "wx/log.h"
     #include "wx/brush.h"
@@ -149,21 +150,19 @@ wxChoice::~wxChoice()
 // adding/deleting items to/from the list
 // ----------------------------------------------------------------------------
 
-int wxChoice::DoAppend(const wxString& item)
-{
-    return 0;
-}
-
-int wxChoice::DoInsert(const wxString& item, unsigned int pos)
+int wxChoice::DoInsertItems(const wxArrayStringsAdapter& items,
+                            unsigned int pos,
+                            void **clientData,
+                            wxClientDataType type)
 {
     return 0;
 }
 
-void wxChoice::Delete(unsigned int n)
+void wxChoice::DoDeleteOneItem(unsigned int n)
 {
 }
 
-void wxChoice::Clear()
+void wxChoice::DoClear()
 {
 }
 
@@ -215,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
 // ----------------------------------------------------------------------------