X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2cdcee612a0ea692f0d20f7a039950a793294ac0..eae20a30ea20e0292b050d41ad190c0c08c75ec1:/src/gtk1/button.cpp diff --git a/src/gtk1/button.cpp b/src/gtk1/button.cpp index f84cfc3221..6d71384052 100644 --- a/src/gtk1/button.cpp +++ b/src/gtk1/button.cpp @@ -12,10 +12,8 @@ #if wxUSE_BUTTON -#include "wx/button.h" - #ifndef WX_PRECOMP - #include "wx/toplevel.h" + #include "wx/button.h" #endif #include "wx/stockitem.h" @@ -157,18 +155,17 @@ bool wxButton::Create( wxWindow *parent, wxWindowID id, const wxString &label, } -void wxButton::SetDefault() +wxWindow *wxButton::SetDefault() { - wxTopLevelWindow *tlw = wxDynamicCast(wxGetTopLevelParent(this), wxTopLevelWindow); - wxCHECK_RET( tlw, _T("button without top level window?") ); - - tlw->SetDefaultItem(this); + wxWindow *oldDefault = wxButtonBase::SetDefault(); GTK_WIDGET_SET_FLAGS( m_widget, GTK_CAN_DEFAULT ); gtk_widget_grab_default( m_widget ); // resize for default border gtk_button_style_set_callback( m_widget, NULL, this ); + + return oldDefault; } /* static */