]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/radiobut.cpp
Added empty base class constructors. This will still be broken for anything
[wxWidgets.git] / src / msw / radiobut.cpp
index 96f4803110b9aa557403689f578971e8f1d27eed..7ad7e7316ee16900ccb6221946bdefb4c268fd2a 100644 (file)
@@ -102,6 +102,25 @@ IMPLEMENT_DYNAMIC_CLASS(wxRadioButton, wxControl)
 #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;