]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/checkbox.mm
Fix incorrect comparison
[wxWidgets.git] / src / cocoa / checkbox.mm
index dccffa0053262cfc3d605e8278179e595b970598..0e73912c1fae485500dc57068b379fdc1edcd0db 100644 (file)
@@ -47,7 +47,7 @@ bool wxCheckBox::Create(wxWindow *parent, wxWindowID winid,
     [m_cocoaNSView release];
     [GetNSButton() setButtonType: NSSwitchButton];
     [GetNSButton() setAllowsMixedState: Is3State()];
-    [GetNSButton() setTitle:wxNSStringWithWxString(wxStripMenuCodes(label))];
+    [GetNSButton() setTitle:wxNSStringWithWxString(GetLabelText(label))];
     [GetNSControl() sizeToFit];
 
     if(m_parent)