]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/listbox.h
Fix text origin and bounding box computations in wxSVGFileDC.
[wxWidgets.git] / interface / wx / listbox.h
index e9e3524b7a7e149135f2e1a2c244fb0cc6929228..295f0fab372a7e9e469ebb3e6581fa6acdc58732 100644 (file)
@@ -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;     
 };