]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/listbox.cpp
can't pass objects through ... (please don't ever ignore this gcc warning)
[wxWidgets.git] / src / palmos / listbox.cpp
index 89b033a925d5d6e8f3c9b89f59bb9cf20ca25db0..7302ebdaf0a15290b887d45edc584f30c4306950 100644 (file)
@@ -110,7 +110,7 @@ public:
     wxListBoxItem(const wxString& str = wxEmptyString);
 };
 
-wxListBoxItem::wxListBoxItem(const wxString& str) : wxOwnerDrawn(str, FALSE)
+wxListBoxItem::wxListBoxItem(const wxString& str) : wxOwnerDrawn(str, false)
 {
     // no bitmaps/checkmarks
     SetMarginWidth(0);
@@ -190,11 +190,6 @@ void wxListBox::DoSetItems(const wxArrayString& choices, void** clientData)
 {
 }
 
-int wxListBox::FindString(const wxString& s) const
-{
-    return wxNOT_FOUND;
-}
-
 void wxListBox::Clear()
 {
 }
@@ -259,9 +254,9 @@ void wxListBox::SetString(int N, const wxString& s)
 {
 }
 
-int wxListBox::GetCount() const
+size_t wxListBox::GetCount() const
 {
-    return m_noItems;
+    return 0;
 }
 
 // ----------------------------------------------------------------------------