X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..fb5246bead0df931f25bd73c9a03c356b180fcd1:/include/wx/os2/listbox.h diff --git a/include/wx/os2/listbox.h b/include/wx/os2/listbox.h index 3cefb9e351..9632105689 100644 --- a/include/wx/os2/listbox.h +++ b/include/wx/os2/listbox.h @@ -1,12 +1,12 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: listbox.h +// Name: wx/os2/listbox.h // Purpose: wxListBox class // Author: David Webster // Modified by: // Created: 10/09/99 // RCS-ID: $Id$ // Copyright: (c) David Webster -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_LISTBOX_H_ @@ -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_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;