X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f1e01716310cb6e3bfcf5894b442d277bc32789a..3ab296d9eb6d351eb1d2238f3e6ff2f5e6123861:/src/cocoa/button.mm diff --git a/src/cocoa/button.mm b/src/cocoa/button.mm index 0485809e1b..2e9cb7103c 100644 --- a/src/cocoa/button.mm +++ b/src/cocoa/button.mm @@ -48,7 +48,7 @@ bool wxButton::Create(wxWindow *parent, wxWindowID winid, [m_cocoaNSView release]; [GetNSButton() setBezelStyle:NSRoundedBezelStyle]; - [GetNSButton() setTitle:wxNSStringWithWxString(wxStripMenuCodes(label))]; + [GetNSButton() setTitle:wxNSStringWithWxString(GetLabelText(label))]; [GetNSControl() sizeToFit]; if(m_parent) @@ -78,7 +78,7 @@ wxString wxButton::GetLabel() const void wxButton::SetLabel(const wxString& label) { - [GetNSButton() setTitle:wxNSStringWithWxString(wxStripMenuCodes(label))]; + [GetNSButton() setTitle:wxNSStringWithWxString(GetLabelText(label))]; } wxSize wxButton::DoGetBestSize() const