// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "radiobut.h"
#endif
-#include "wx/defs.h"
+#include "wx/wxprec.h"
+
+#if wxUSE_RADIOBTN
#include "wx/radiobut.h"
void wxRadioButton::SetValue(bool val)
{
wxRadioButton *cycle;
- if ( m_peer->GetValue() == val )
+ if ( m_peer->GetValue() == val )
return ;
- m_peer->SetValue( val ) ;
- if (val)
- {
- cycle=this->NextInCycle();
- if (cycle!=NULL) {
- while (cycle!=this) {
- cycle->SetValue(false);
- cycle=cycle->NextInCycle();
- }
- }
+ m_peer->SetValue( val ) ;
+ if (val)
+ {
+ cycle=this->NextInCycle();
+ if (cycle!=NULL)
+ {
+ while (cycle!=this)
+ {
+ cycle->SetValue(false);
+ cycle=cycle->NextInCycle();
}
- MacRedrawControl() ;
+ }
+ }
}
bool wxRadioButton::GetValue() const
return(cycle);
}
}
+
+#endif