m_cocoaNSView = NULL;
SetNSTextField([[NSTextField alloc] initWithFrame:MakeDefaultNSRect(size)]);
[m_cocoaNSView release];
- [GetNSTextField() setStringValue:[NSString stringWithCString:value.c_str()]];
+ [GetNSTextField() setStringValue:wxNSStringWithWxString(value)];
+
[GetNSControl() sizeToFit];
NSRect currentFrame = [m_cocoaNSView frame];
if(currentFrame.size.width < 70)
wxTextCtrl::~wxTextCtrl()
{
- DisassociateNSTextField(m_cocoaNSView);
+ DisassociateNSTextField(GetNSTextField());
}
void wxTextCtrl::Cocoa_didChangeText(void)
{
}
+void wxTextCtrl::MarkDirty()
+{
+}
+
void wxTextCtrl::DiscardEdits()
{
}
wxString wxTextCtrl::GetValue() const
{
wxAutoNSAutoreleasePool pool;
- return wxString([[GetNSTextField() stringValue] lossyCString]);
+ return wxStringWithNSString([GetNSTextField() stringValue]);
}