X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fc7a2a602b4bd9308be21bc07e40a680f483438e..69a05ef6d65a4450f9e929a22bbf96ddcde916f3:/include/wx/msw/radiobut.h

diff --git a/include/wx/msw/radiobut.h b/include/wx/msw/radiobut.h
index 723a99ba72..43a8e30e32 100644
--- a/include/wx/msw/radiobut.h
+++ b/include/wx/msw/radiobut.h
@@ -12,10 +12,6 @@
 #ifndef _WX_RADIOBUT_H_
 #define _WX_RADIOBUT_H_
 
-#ifdef __GNUG__
-    #pragma interface "radiobut.h"
-#endif
-
 class WXDLLEXPORT wxRadioButton: public wxControl
 {
 public:
@@ -52,9 +48,9 @@ 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 bool HasTransparentBackground() { return true; }
 
-    virtual void SetFocus();
+    virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
 
 protected:
     virtual wxSize DoGetBestSize() const;
@@ -63,8 +59,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)
 };