X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/338dd992160bf20205743c092b353d96ef7604fb..0b7e6e7da208b6a95fb23cb50286a09dc90d96d2:/src/motif/checkbox.cpp diff --git a/src/motif/checkbox.cpp b/src/motif/checkbox.cpp index d528c697f9..32b1413b6a 100644 --- a/src/motif/checkbox.cpp +++ b/src/motif/checkbox.cpp @@ -32,10 +32,8 @@ void wxCheckBoxCallback (Widget w, XtPointer clientData, XtPointer ptr); -#if !USE_SHARED_LIBRARY IMPLEMENT_DYNAMIC_CLASS(wxCheckBox, wxControl) IMPLEMENT_DYNAMIC_CLASS(wxBitmapCheckBox, wxCheckBox) -#endif // Single check box item bool wxCheckBox::Create(wxWindow *parent, wxWindowID id, const wxString& label, @@ -62,8 +60,9 @@ bool wxCheckBox::Create(wxWindow *parent, wxWindowID id, const wxString& label, char* label1 = (label.IsNull() ? "" : (char*) (const char*) label); XmString text = XmStringCreateSimple (label1); #endif + wxString label1(wxStripMenuCodes(label)); - wxXmString text( label ); + wxXmString text( label1 ); Widget parentWidget = (Widget) parent->GetClientWidget(); XmFontList fontList = (XmFontList) m_font.GetFontList(1.0, XtDisplay(parentWidget));