X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/93488eee91771528926ec2ef0664bc4d2f15a100..b477f956e0421cb8d8e40635f4c372a0298fd739:/src/motif/control.cpp diff --git a/src/motif/control.cpp b/src/motif/control.cpp index 6413b92103..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) @@ -62,28 +64,19 @@ bool wxControl::Create( wxWindow *parent, return ret; } -wxControl::~wxControl() -{ - // If we delete an item, we should initialize the parent panel, - // because it could now be invalid. - if ( GetParent()->panel->GetDefaultItem() == this) - panel->SetDefaultItem(NULL); -} - void wxControl::SetLabel(const wxString& label) { Widget widget = (Widget) GetLabelWidget() ; 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