#endif
+wxRadioButton::wxRadioButton()
+{
+ Init();
+}
+
+wxRadioButton::wxRadioButton(wxWindow *parent,
+ wxWindowID id,
+ const wxString& label,
+ const wxPoint& pos,
+ const wxSize& size,
+ long style,
+ const wxValidator& validator,
+ const wxString& name)
+{
+ Init();
+
+ Create(parent, id, label, pos, size, style, validator, name);
+}
+
void wxRadioButton::Init()
{
m_isChecked = false;