X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/da0634c1401743089b1d8be20f9b6bdad0e8085b..d223107206e4dfa6768e0bc2455325dd49e4d2bb:/src/cocoa/checklst.mm?ds=inline diff --git a/src/cocoa/checklst.mm b/src/cocoa/checklst.mm index 1ddc6fc8d1..09a347ecd2 100644 --- a/src/cocoa/checklst.mm +++ b/src/cocoa/checklst.mm @@ -9,15 +9,32 @@ // Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// -#include "wx/app.h" -#include "wx/checklst.h" -#include "wx/log.h" +#include "wx/wxprec.h" +#ifndef WX_PRECOMP + #include "wx/log.h" + #include "wx/app.h" + #include "wx/checklst.h" +#endif //WX_PRECOMP IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox, wxListBox) BEGIN_EVENT_TABLE(wxCheckListBox, wxCheckListBoxBase) END_EVENT_TABLE() // WX_IMPLEMENT_COCOA_OWNER(wxCheckListBox,NSButton,NSControl,NSView) +bool wxCheckListBox::Create(wxWindow *parent, wxWindowID winid, + const wxPoint& pos, + const wxSize& size, + const wxArrayString& choices, + long style, + const wxValidator& validator, + const wxString& name) +{ + wxCArrayString chs(choices); + + return Create(parent, winid, pos, size, chs.GetCount(), chs.GetStrings(), + style, validator, name); +} + bool wxCheckListBox::Create(wxWindow *parent, wxWindowID winid, const wxPoint& pos, const wxSize& size, @@ -36,7 +53,6 @@ bool wxCheckListBox::Create(wxWindow *parent, wxWindowID winid, wxCheckListBox::~wxCheckListBox() { - CocoaRemoveFromParent(); } bool wxCheckListBox::IsChecked(size_t item) const