X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/aa61d3525370a9b9fa8c797d9b7f89d96994db5f..85284ca4b226d9a1ab6bed26c5eaa480543649d5:/src/univ/radiobox.cpp diff --git a/src/univ/radiobox.cpp b/src/univ/radiobox.cpp index b51b63aecb..cff69702fb 100644 --- a/src/univ/radiobox.cpp +++ b/src/univ/radiobox.cpp @@ -25,9 +25,10 @@ #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" @@ -146,11 +147,11 @@ bool wxRadioBox::Create(wxWindow *parent, 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; } @@ -159,7 +160,7 @@ bool wxRadioBox::Create(wxWindow *parent, wxFAIL_MSG( _T("you must specify wxRA_XXX style!") ); // use default - style = wxRA_HORIZONTAL | wxRA_LEFTTORIGHT; + style = wxRA_SPECIFY_COLS | wxRA_LEFTTORIGHT; } }