From: Robin Dunn Date: Mon, 27 Feb 2012 23:50:59 +0000 (+0000) Subject: Phoenix needs to see the implementation of pure virtuals so it knows that this class... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f115bfec38b810f06ccc47544a4e2e2e410f73b1 Phoenix needs to see the implementation of pure virtuals so it knows that this class is not abstract. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70721 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/listbox.h b/interface/wx/listbox.h index e9e3524b7a..295f0fab37 100644 --- a/interface/wx/listbox.h +++ b/interface/wx/listbox.h @@ -293,5 +293,13 @@ public: This method is mostly meant for internal use only. */ virtual bool IsSorted() const; + + + // NOTE: Phoenix needs to see the implementation of pure virtuals so it + // knows that this class is not abstract. + virtual unsigned int GetCount() const; + virtual wxString GetString(unsigned int n) const; + virtual void SetString(unsigned int n, const wxString& s); + virtual int FindString(const wxString& s, bool bCase = false) const; };