// Pushbutton
class WXDLLEXPORT wxButton: public wxButtonBase
{
- public:
+public:
inline wxButton() {}
inline wxButton( wxWindow* pParent
,wxWindowID vId
virtual ~wxButton();
+ virtual wxWindow *SetDefault();
+
static wxSize GetDefaultSize(void);
virtual void Command(wxCommandEvent& rEvent);
virtual bool OS2Command( WXUINT uParam
return ProcessCommand(vEvent);
} // end of wxButton::SendClickEvent
-void wxButton::SetDefault()
+wxWindow *wxButton::SetDefault()
{
//
// Set this one as the default button both for wxWidgets and Windows
//
- wxWindow* pWinOldDefault = wxButtonBase::Set();
+ wxWindow* pWinOldDefault = wxButtonBase::SetDefault();
SetDefaultStyle( wxDynamicCast(pWinOldDefault, wxButton), false);
SetDefaultStyle( this, true );