X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..1afad0ac74765ede24df7f069b41e3595dd1c605:/include/wx/checklst.h diff --git a/include/wx/checklst.h b/include/wx/checklst.h index 842076dcf1..1d886ba4b0 100644 --- a/include/wx/checklst.h +++ b/include/wx/checklst.h @@ -6,7 +6,7 @@ // Created: 12.09.00 // RCS-ID: $Id$ // Copyright: (c) Vadim Zeitlin -// Licence: wxWidgets licence +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// #ifndef _WX_CHECKLST_H_BASE_ @@ -20,26 +20,36 @@ // wxCheckListBox: a listbox whose items may be checked // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxCheckListBoxBase : public wxListBox +class WXDLLIMPEXP_CORE wxCheckListBoxBase : public + #ifdef __WXWINCE__ + // keep virtuals synchronised + wxListBoxBase + #else + wxListBox + #endif { public: wxCheckListBoxBase() { } // check list box specific methods - virtual bool IsChecked(size_t item) const = 0; - virtual void Check(size_t item, bool check = TRUE) = 0; + virtual bool IsChecked(unsigned int item) const = 0; + virtual void Check(unsigned int item, bool check = true) = 0; DECLARE_NO_COPY_CLASS(wxCheckListBoxBase) }; #if defined(__WXUNIVERSAL__) #include "wx/univ/checklst.h" +#elif defined(__WXWINCE__) + #include "wx/msw/wince/checklst.h" #elif defined(__WXMSW__) #include "wx/msw/checklst.h" #elif defined(__WXMOTIF__) #include "wx/motif/checklst.h" -#elif defined(__WXGTK__) +#elif defined(__WXGTK20__) #include "wx/gtk/checklst.h" +#elif defined(__WXGTK__) + #include "wx/gtk1/checklst.h" #elif defined(__WXMAC__) #include "wx/mac/checklst.h" #elif defined(__WXCOCOA__)