git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41144
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
virtual void Command(wxCommandEvent& event);
virtual bool HasTransparentBackground() { return true; }
virtual void Command(wxCommandEvent& event);
virtual bool HasTransparentBackground() { return true; }
+ virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
+
protected:
virtual wxSize DoGetBestSize() const;
protected:
virtual wxSize DoGetBestSize() const;
+WXDWORD wxRadioButton::MSWGetStyle(long style, WXDWORD *exstyle) const
+{
+ WXDWORD styleMSW = wxControl::MSWGetStyle(style, exstyle);
+
+ if ( style & wxRB_GROUP )
+ styleMSW |= WS_GROUP;
+
+ return styleMSW;
+}
+