]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/radiobut.cpp
The device origin can be set on WinCE, so use it and redefine conversion
[wxWidgets.git] / src / palmos / radiobut.cpp
index 3a344102aaafacb7e4cdb0c1ea5920ad37027a9e..2e008218e0a8158321d134bda60f11fba6054742 100644 (file)
@@ -103,6 +103,7 @@ IMPLEMENT_DYNAMIC_CLASS(wxRadioButton, wxControl)
 void wxRadioButton::Init()
 {
     m_radioStyle = pushButtonCtl;
+    m_groupID = 0;
 }
 
 bool wxRadioButton::Create(wxWindow *parent,
@@ -115,7 +116,7 @@ bool wxRadioButton::Create(wxWindow *parent,
                            const wxString& name)
 {
     // replace native push button with native checkbox
-    if ( style & wxRB_USE_SUBSTITUTE )
+    if ( style & wxRB_USE_CHECKBOX )
         m_radioStyle = checkboxCtl;
 
     if(!wxControl::Create(parent, id, pos, size, style, validator, name))
@@ -126,10 +127,16 @@ bool wxRadioButton::Create(wxWindow *parent,
                           m_radioStyle == checkboxCtl ? checkboxCtl : pushButtonCtl,
                           label,
                           pos,
-                          size
+                          size,
+                          m_groupID
                       );
 }
 
+void wxRadioButton::SetGroup(uint8_t group)
+{
+    m_groupID = group;
+}
+
 // ----------------------------------------------------------------------------
 // wxRadioButton functions
 // ----------------------------------------------------------------------------