X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/11e62fe658531aaa2891351f19bd0a4c076717ae..f37c35d717a6a092b91eb5ae07342a9c62c78477:/src/palmos/listbox.cpp diff --git a/src/palmos/listbox.cpp b/src/palmos/listbox.cpp index 2ee8226dde..7302ebdaf0 100644 --- a/src/palmos/listbox.cpp +++ b/src/palmos/listbox.cpp @@ -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; } // ----------------------------------------------------------------------------