#pragma message enable nosimpint
#endif
+#include "wx/motif/private.h"
+
IMPLEMENT_ABSTRACT_CLASS(wxControl, wxWindow)
BEGIN_EVENT_TABLE(wxControl, wxWindow)
if (!widget)
return;
- wxStripMenuCodes((char*) (const char*) label, wxBuffer);
+ wxString buf(wxStripMenuCodes(label));
+ wxXmString label_str(buf);
- XmString text = XmStringCreateSimple (wxBuffer);
XtVaSetValues (widget,
- XmNlabelString, text,
+ XmNlabelString, label_str(),
XmNlabelType, XmSTRING,
NULL);
- XmStringFree (text);
}
wxString wxControl::GetLabel() const