X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/45ff6421e6d0327584bb85aeb5bda8be48b6ca5e..a7c8e710e944fc12a81a19d06fe415a92e86bb13:/src/motif/control.cpp diff --git a/src/motif/control.cpp b/src/motif/control.cpp index 0a5e6377f1..1dc7e344c5 100644 --- a/src/motif/control.cpp +++ b/src/motif/control.cpp @@ -27,6 +27,8 @@ #pragma message enable nosimpint #endif +#include "wx/motif/private.h" + IMPLEMENT_ABSTRACT_CLASS(wxControl, wxWindow) BEGIN_EVENT_TABLE(wxControl, wxWindow) @@ -68,11 +70,11 @@ void wxControl::SetLabel(const wxString& label) if (!widget) return; - wxString buf(wxStripMenuCodes()); + wxString buf(wxStripMenuCodes(label)); wxXmString label_str(buf); XtVaSetValues (widget, - XmNlabelString, label_str, + XmNlabelString, label_str(), XmNlabelType, XmSTRING, NULL); }