X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d79decb5b4cea1616129b07f9768c98f0b4634d5..b0802e642190c07d819d1c01bd7c315453d091d0:/src/palmos/radiobut.cpp?ds=inline diff --git a/src/palmos/radiobut.cpp b/src/palmos/radiobut.cpp index e189985762..2e008218e0 100644 --- a/src/palmos/radiobut.cpp +++ b/src/palmos/radiobut.cpp @@ -103,6 +103,7 @@ IMPLEMENT_DYNAMIC_CLASS(wxRadioButton, wxControl) void wxRadioButton::Init() { m_radioStyle = pushButtonCtl; + m_groupID = 0; } bool wxRadioButton::Create(wxWindow *parent, @@ -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 // ----------------------------------------------------------------------------