X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7520f3da332d64a676b6f7d27a56004fabf2db36..5d3f234b6b56549bb7e46bfd1286b63cf09ffe65:/src/motif/button.cpp diff --git a/src/motif/button.cpp b/src/motif/button.cpp index af7a37ac49..77ce5c0242 100644 --- a/src/motif/button.cpp +++ b/src/motif/button.cpp @@ -27,6 +27,11 @@ #pragma message enable nosimpint #endif + +#ifndef WX_PRECOMP + #include "wx/toplevel.h" +#endif + #include "wx/stockitem.h" #include "wx/motif/private.h" #include "wx/sysopt.h" @@ -53,8 +58,7 @@ bool wxButton::Create(wxWindow *parent, wxWindowID id, const wxString& lbl, if( !CreateControl( parent, id, pos, size, style, validator, name ) ) return false; - wxString label1(wxStripMenuCodes(label)); - wxXmString text( label1 ); + wxXmString text( GetLabelText(label) ); Widget parentWidget = (Widget) parent->GetClientWidget(); @@ -123,9 +127,9 @@ void wxButton::SetDefaultShadowThicknessAndResize() void wxButton::SetDefault() { - wxWindow *parent = GetParent(); - if ( parent ) - parent->SetDefaultItem(this); + wxTopLevelWindow *tlw = wxDynamicCast(wxGetTopLevelParent(this), wxTopLevelWindow); + if ( tlw ) + tlw->SetDefaultItem(this); // We initially do not set XmNdefaultShadowThickness, to have // small buttons. Unfortunately, buttons are now mis-aligned. We @@ -134,6 +138,7 @@ void wxButton::SetDefault() // wxButton in the same row, correction is straighforward: we set // resource for all wxButton in this parent (but not sub panels) + wxWindow *parent = GetParent(); for (wxWindowList::compatibility_iterator node = parent->GetChildren().GetFirst (); node; node = node->GetNext ()) {