git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21131
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#endif
#import <AppKit/NSButton.h>
#endif
#import <AppKit/NSButton.h>
-#import <Foundation/NSString.h>
+#include "wx/cocoa/string.h"
IMPLEMENT_DYNAMIC_CLASS(wxButton, wxControl)
BEGIN_EVENT_TABLE(wxButton, wxButtonBase)
IMPLEMENT_DYNAMIC_CLASS(wxButton, wxControl)
BEGIN_EVENT_TABLE(wxButton, wxButtonBase)
[m_cocoaNSView release];
[GetNSButton() setBezelStyle:NSRoundedBezelStyle];
[m_cocoaNSView release];
[GetNSButton() setBezelStyle:NSRoundedBezelStyle];
- [GetNSButton() setTitle:[NSString stringWithCString: label.c_str()]];
+ [GetNSButton() setTitle:wxNSStringWithWxString(label)];
[GetNSControl() sizeToFit];
if(m_parent)
[GetNSControl() sizeToFit];
if(m_parent)
#include "wx/log.h"
#import <AppKit/NSButton.h>
#include "wx/log.h"
#import <AppKit/NSButton.h>
-#import <Foundation/NSString.h>
+#include "wx/cocoa/string.h"
IMPLEMENT_DYNAMIC_CLASS(wxRadioButton, wxControl)
// wxRadioButtonBase == wxControl
IMPLEMENT_DYNAMIC_CLASS(wxRadioButton, wxControl)
// wxRadioButtonBase == wxControl
SetNSButton([[NSButton alloc] initWithFrame: cocoaRect]);
[m_cocoaNSView release];
[GetNSButton() setButtonType: NSRadioButton];
SetNSButton([[NSButton alloc] initWithFrame: cocoaRect]);
[m_cocoaNSView release];
[GetNSButton() setButtonType: NSRadioButton];
- [GetNSButton() setTitle:[NSString stringWithCString: label.c_str()]];
+ [GetNSButton() setTitle:wxNSStringWithWxString(label)];
[GetNSControl() sizeToFit];
if(m_parent)
[GetNSControl() sizeToFit];
if(m_parent)