[m_cocoaNSView release];
[GetNSButton() setBezelStyle:NSRoundedBezelStyle];
- [GetNSButton() setTitle:wxNSStringWithWxString(label)];
+ [GetNSButton() setTitle:wxNSStringWithWxString(wxStripMenuCodes(label))];
[GetNSControl() sizeToFit];
if(m_parent)
wxButton::~wxButton()
{
- DisassociateNSButton(m_cocoaNSView);
+ DisassociateNSButton(GetNSButton());
}
void wxButton::Cocoa_wxNSButtonAction(void)
void wxButton::SetLabel(const wxString& label)
{
- [GetNSButton() setTitle:wxNSStringWithWxString(label)];
+ [GetNSButton() setTitle:wxNSStringWithWxString(wxStripMenuCodes(label))];
}
wxSize wxButtonBase::GetDefaultSize()