]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/listbox.cpp
wxDisplay cleanup/rewrite:
[wxWidgets.git] / src / palmos / listbox.cpp
index 2ee8226dde3482236b1ee041685446c8234d526b..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);
@@ -254,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;
 }
 
 // ----------------------------------------------------------------------------