#endif //WX_PRECOMP
#include "wx/cocoa/autorelease.h"
+#include "wx/cocoa/string.h"
#import <Foundation/NSString.h>
#import <AppKit/NSTextField.h>
m_cocoaNSView = NULL;
SetNSTextField([[NSTextField alloc] initWithFrame:MakeDefaultNSRect(size)]);
[m_cocoaNSView release];
- [GetNSTextField() setStringValue:[NSString stringWithCString:label.c_str()]];
+ [GetNSTextField() setStringValue:wxNSStringWithWxString(label)];
// [GetNSTextField() setBordered: NO];
[GetNSTextField() setBezeled: NO];
[GetNSTextField() setEditable: NO];
wxStaticText::~wxStaticText()
{
- DisassociateNSTextField(m_cocoaNSView);
+ DisassociateNSTextField(GetNSTextField());
}
void wxStaticText::SetLabel(const wxString& label)