X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..f36b3a915e4543fbbd9c911724404b016972aabc:/include/wx/checklst.h diff --git a/include/wx/checklst.h b/include/wx/checklst.h index 842076dcf1..d30003320e 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 WXDLLEXPORT 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__)