#if wxUSE_RADIOBOX
+#include "wx/radiobox.h"
+
#ifndef WX_PRECOMP
#include "wx/dcclient.h"
- #include "wx/radiobox.h"
#include "wx/radiobut.h"
#include "wx/validate.h"
#include "wx/arrstr.h"
if ( !(style & (wxRA_LEFTTORIGHT | wxRA_TOPTOBOTTOM)) )
{
// horizontal radiobox use left to right layout
- if ( style & wxRA_HORIZONTAL )
+ if ( style & wxRA_SPECIFY_COLS )
{
style |= wxRA_LEFTTORIGHT;
}
- else if ( style & wxRA_VERTICAL )
+ else if ( style & wxRA_SPECIFY_ROWS )
{
style |= wxRA_TOPTOBOTTOM;
}
wxFAIL_MSG( _T("you must specify wxRA_XXX style!") );
// use default
- style = wxRA_HORIZONTAL | wxRA_LEFTTORIGHT;
+ style = wxRA_SPECIFY_COLS | wxRA_LEFTTORIGHT;
}
}