X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/16c81607bfe8b01224ab42a842be208acf74abdd..51146826fc0a0a949d88f23fb9d83fc1f1ada14e:/src/cocoa/checklst.mm diff --git a/src/cocoa/checklst.mm b/src/cocoa/checklst.mm index dbc40bc078..5865461756 100644 --- a/src/cocoa/checklst.mm +++ b/src/cocoa/checklst.mm @@ -1,22 +1,23 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: cocoa/checklst.mm +// Name: src/cocoa/checklst.mm // Purpose: wxCheckListBox // Author: David Elliott // Modified by: // Created: 2003/03/18 -// RCS-ID: $Id: +// RCS-ID: $Id$ // Copyright: (c) 2003 David Elliott -// Licence: wxWidgets licence +// Licence: wxWidgets licence ///////////////////////////////////////////////////////////////////////////// #include "wx/wxprec.h" #if wxUSE_CHECKLISTBOX +#include "wx/checklst.h" + #ifndef WX_PRECOMP #include "wx/log.h" #include "wx/app.h" - #include "wx/checklst.h" #endif //WX_PRECOMP IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox, wxListBox) @@ -58,14 +59,14 @@ wxCheckListBox::~wxCheckListBox() { } -bool wxCheckListBox::IsChecked(size_t item) const +bool wxCheckListBox::IsChecked(unsigned int item) const { return false; } -void wxCheckListBox::Check(size_t item, bool check) +void wxCheckListBox::Check(unsigned int item, bool check) { } -#endif \ No newline at end of file +#endif