X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ad81651f00edc6f489d9b6a0839d316a964fd521..606b005fb2b535b34d1ca45d2d06ee86718e8b1c:/src/motif/checkbox.cpp diff --git a/src/motif/checkbox.cpp b/src/motif/checkbox.cpp index ac259ac03a..f6226acfd4 100644 --- a/src/motif/checkbox.cpp +++ b/src/motif/checkbox.cpp @@ -13,6 +13,10 @@ #pragma implementation "checkbox.h" #endif +#ifdef __VMS +#define XtDisplay XTDISPLAY +#endif + #include "wx/checkbox.h" #include "wx/utils.h" @@ -60,8 +64,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));