From: Vadim Zeitlin Date: Sun, 4 Nov 2012 23:52:21 +0000 (+0000) Subject: Suppress warnings about NSText not responding to setAllowsUndo. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/529f35ff374419c531f6581377495ee82447c780 Suppress warnings about NSText not responding to setAllowsUndo. Cast NSText to NSTextView when sending this message to it. Hopefully it doesn't change the run-time behaviour but just fixes several lines of warnings that were given without this cast. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72890 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/osx/cocoa/textctrl.mm b/src/osx/cocoa/textctrl.mm index b1364c509c..fd54310108 100644 --- a/src/osx/cocoa/textctrl.mm +++ b/src/osx/cocoa/textctrl.mm @@ -869,10 +869,10 @@ void wxNSTextFieldControl::WriteText(const wxString& str) wxMacEditHelper helper(m_textField); BOOL hasUndo = [editor respondsToSelector:@selector(setAllowsUndo:)]; if ( hasUndo ) - [editor setAllowsUndo:NO]; + [(NSTextView*)editor setAllowsUndo:NO]; [editor insertText:wxCFStringRef( str , m_wxPeer->GetFont().GetEncoding() ).AsNSString()]; if ( hasUndo ) - [editor setAllowsUndo:YES]; + [(NSTextView*)editor setAllowsUndo:YES]; } else {