X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1be7a35c5ec31b6cfcab9d969c7969586441a945..78fd3d12bc0f956d755a70564305863531010c34:/include/wx/checklst.h diff --git a/include/wx/checklst.h b/include/wx/checklst.h index f976b0c1f4..f7ec1a8762 100644 --- a/include/wx/checklst.h +++ b/include/wx/checklst.h @@ -20,7 +20,7 @@ // wxCheckListBox: a listbox whose items may be checked // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxCheckListBoxBase : public +class WXDLLIMPEXP_CORE wxCheckListBoxBase : public #ifdef __WXWINCE__ // keep virtuals synchronised wxListBoxBase @@ -32,8 +32,8 @@ 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) }; @@ -51,7 +51,7 @@ public: #elif defined(__WXGTK__) #include "wx/gtk1/checklst.h" #elif defined(__WXMAC__) - #include "wx/mac/checklst.h" + #include "wx/osx/checklst.h" #elif defined(__WXCOCOA__) #include "wx/cocoa/checklst.h" #elif defined(__WXPM__)