/////////////////////////////////////////////////////////////////////////////
#include "wx/wxprec.h"
+
+#if wxUSE_CHECKBOX
+
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/app.h"
Command(event);
}
+void wxCheckBox::SetLabel(const wxString& s)
+{
+ wxAutoNSAutoreleasePool pool;
+ [GetNSButton() setTitle:wxNSStringWithWxString(s)];
+}
+#endif