X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/584ad2a32fec156c6049145d7ece9a33213aea28..be96ed8c5dd17ece6effc679a48078270b577a92:/include/wx/os2/listbox.h diff --git a/include/wx/os2/listbox.h b/include/wx/os2/listbox.h index a1bba2d821..4c67ca7fcd 100644 --- a/include/wx/os2/listbox.h +++ b/include/wx/os2/listbox.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: listbox.h +// Name: wx/os2/listbox.h // Purpose: wxListBox class // Author: David Webster // Modified by: @@ -17,12 +17,12 @@ // ---------------------------------------------------------------------------- #if wxUSE_OWNER_DRAWN - class WXDLLEXPORT wxOwnerDrawn; + class WXDLLEXPORT wxOwnerDrawn; - // define the array of list box items - #include + // define the array of list box items + #include "wx/dynarray.h" - WX_DEFINE_EXPORTED_ARRAY(wxOwnerDrawn *, wxListBoxItemsArray); + WX_DEFINE_EXPORTED_ARRAY_PTR(wxOwnerDrawn *, wxListBoxItemsArray); #endif // wxUSE_OWNER_DRAWN // forward decl for GetSelections() @@ -108,14 +108,11 @@ public: virtual int GetCount(void) const; virtual wxString GetString(int n) const; - virtual void SetString( int n - ,const wxString& rsString - ); - virtual int FindString(const wxString& rsString) const; + virtual void SetString(int n, const wxString& rsString); virtual bool IsSelected(int n) const; - virtual void SetSelection( int n - ,bool bSelect = TRUE + virtual void DoSetSelection( int n + ,bool bSelect ); virtual int GetSelection(void) const; virtual int GetSelections(wxArrayInt& raSelections) const; @@ -176,5 +173,4 @@ private: DECLARE_DYNAMIC_CLASS(wxListBox) }; // end of wxListBox -#endif - // _WX_LISTBOX_H_ +#endif // _WX_LISTBOX_H_