X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d79decb5b4cea1616129b07f9768c98f0b4634d5..0a95d3369e08206a43032472418693f7726591e5:/src/palmos/radiobut.cpp diff --git a/src/palmos/radiobut.cpp b/src/palmos/radiobut.cpp index e189985762..de723d6607 100644 --- a/src/palmos/radiobut.cpp +++ b/src/palmos/radiobut.cpp @@ -17,10 +17,6 @@ // headers // ---------------------------------------------------------------------------- -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma implementation "radiobut.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -30,12 +26,15 @@ #if wxUSE_RADIOBTN +#include "wx/radiobut.h" + #ifndef WX_PRECOMP - #include "wx/radiobut.h" #include "wx/settings.h" #include "wx/dcscreen.h" #endif +#include + // ============================================================================ // wxRadioButton implementation // ============================================================================ @@ -103,6 +102,7 @@ IMPLEMENT_DYNAMIC_CLASS(wxRadioButton, wxControl) void wxRadioButton::Init() { m_radioStyle = pushButtonCtl; + m_groupID = 0; } bool wxRadioButton::Create(wxWindow *parent, @@ -126,10 +126,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 // ----------------------------------------------------------------------------