X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4a3dcf1de1e03170b9b63a3649e137ac4922edea..d223107206e4dfa6768e0bc2455325dd49e4d2bb:/src/cocoa/listbox.mm?ds=sidebyside diff --git a/src/cocoa/listbox.mm b/src/cocoa/listbox.mm index 4d4cd0bf43..a379cdd02e 100644 --- a/src/cocoa/listbox.mm +++ b/src/cocoa/listbox.mm @@ -9,11 +9,15 @@ // Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// -#include "wx/app.h" -#include "wx/listbox.h" -#include "wx/log.h" +#include "wx/wxprec.h" +#ifndef WX_PRECOMP + #include "wx/log.h" + #include "wx/app.h" + #include "wx/listbox.h" +#endif //WX_PRECOMP #include "wx/cocoa/string.h" +#include "wx/cocoa/autorelease.h" #include "wx/cocoa/NSTableDataSource.h" #import @@ -26,6 +30,20 @@ BEGIN_EVENT_TABLE(wxListBox, wxListBoxBase) END_EVENT_TABLE() WX_IMPLEMENT_COCOA_OWNER(wxListBox,NSTableView,NSControl,NSView) +bool wxListBox::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 wxListBox::Create(wxWindow *parent, wxWindowID winid, const wxPoint& pos, const wxSize& size, @@ -34,6 +52,7 @@ bool wxListBox::Create(wxWindow *parent, wxWindowID winid, const wxValidator& validator, const wxString& name) { + wxAutoNSAutoreleasePool pool; if(!CreateControl(parent,winid,pos,size,style,validator,name)) return false; @@ -78,7 +97,7 @@ wxListBox::~wxListBox() [GetNSTableView() setDataSource: nil]; [m_cocoaDataSource release]; [m_cocoaItems release]; - DisassociateNSTableView(m_cocoaNSView); + DisassociateNSTableView(GetNSTableView()); } int wxListBox::CocoaDataSource_numberOfRows()