X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/12028905135250524409f1e7b9bfa9c55e5ce16b..f23b6f74bbf43799594924e94382b13587b4a57e:/include/wx/msw/radiobut.h diff --git a/include/wx/msw/radiobut.h b/include/wx/msw/radiobut.h index 4294d847c2..287bce70cc 100644 --- a/include/wx/msw/radiobut.h +++ b/include/wx/msw/radiobut.h @@ -52,9 +52,7 @@ public: // implementation only from now on virtual bool MSWCommand(WXUINT param, WXWORD id); virtual void Command(wxCommandEvent& event); - virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); - - virtual void SetFocus(); + virtual bool HasTransparentBackground() { return true; } protected: virtual wxSize DoGetBestSize() const; @@ -63,8 +61,9 @@ 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_NO_COPY(wxRadioButton) };