X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5f199b71e3e7f430b2b8830b4e75e2d5870b4212..d61c1a6f21202a9c9927452574cd5c6939255850:/include/wx/msw/radiobut.h diff --git a/include/wx/msw/radiobut.h b/include/wx/msw/radiobut.h index 1ffb17d751..b47ee2e241 100644 --- a/include/wx/msw/radiobut.h +++ b/include/wx/msw/radiobut.h @@ -12,7 +12,7 @@ #ifndef _WX_RADIOBUT_H_ #define _WX_RADIOBUT_H_ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "radiobut.h" #endif @@ -53,8 +53,6 @@ public: virtual bool MSWCommand(WXUINT param, WXWORD id); virtual void Command(wxCommandEvent& event); - virtual void SetFocus(); - protected: virtual wxSize DoGetBestSize() const; @@ -62,10 +60,11 @@ private: // common part of all ctors void Init(); - // see the comments in SetFocus() - bool m_focusJustSet; + // we need to store the state internally as the result of GetValue() + // sometimes gets out of sync in WM_COMMAND handler + bool m_isChecked; - DECLARE_DYNAMIC_CLASS(wxRadioButton) + DECLARE_DYNAMIC_CLASS_NO_COPY(wxRadioButton) }; #endif