]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/radiobut.cpp
There was no icon file in this example, causing compilation with VC to fail. I just...
[wxWidgets.git] / src / msw / radiobut.cpp
index a9a7705f6011ac1c4c4f23783c61941047a1e4e6..261af8c3d36d42b28691227dfced53cfe4616f0e 100644 (file)
@@ -138,6 +138,13 @@ bool wxRadioButton::Create(wxWindow *parent, wxWindowID id,
 
   SetSize(x, y, width, height);
 
+  // for compatibility with wxGTK, the first radio button in a group is
+  // always checked (this makes sense anyhow as you need to ensure that at
+  // least one button in the group is checked and this is the simlpest way to
+  // do it)
+  if ( m_windowStyle & wxRB_GROUP )
+      SetValue(TRUE);
+
   return TRUE;
 }