diff options
Diffstat (limited to 'knights/setpagegeneral.cpp')
-rw-r--r-- | knights/setpagegeneral.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/knights/setpagegeneral.cpp b/knights/setpagegeneral.cpp index 3e65263..c0fe817 100644 --- a/knights/setpagegeneral.cpp +++ b/knights/setpagegeneral.cpp @@ -41,7 +41,7 @@ setPageGeneral::setPageGeneral(TQWidget *parent, resource *Rsrc ) : TQVBoxLayout BUTTON_Init_Nothing = new TQRadioButton( i18n( "Do Nothing" ), GROUP_OnInit ); BUTTON_Init_VsPC = new TQRadioButton( i18n( "Start a Match vs. PC" ), GROUP_OnInit ); BUTTON_Init_Connect = new TQRadioButton( i18n( "Connect to ICS" ), GROUP_OnInit ); - GROUP_OnInit->setExclusive( TRUE ); + GROUP_OnInit->setExclusive( true ); if( Resource->OPTION_On_Init == 0 ) GROUP_OnInit->setButton( 0 ); else if( Resource->OPTION_On_Init == MENU_VS_PC ) GROUP_OnInit->setButton( 1 ); else GROUP_OnInit->setButton( 2 ); @@ -52,7 +52,7 @@ setPageGeneral::setPageGeneral(TQWidget *parent, resource *Rsrc ) : TQVBoxLayout BUTTON_AutoSave_Yes = new TQRadioButton( i18n( "Yes" ), GROUP_AutoSave ); BUTTON_AutoSave_No = new TQRadioButton( i18n( "No" ), GROUP_AutoSave ); BUTTON_AutoSave_Ask = new TQRadioButton( i18n( "Ask" ), GROUP_AutoSave ); - GROUP_AutoSave->setExclusive( TRUE ); + GROUP_AutoSave->setExclusive( true ); if( Resource->PromptForSaving == "Yes" ) GROUP_AutoSave->setButton( 0 ); else if( Resource->PromptForSaving == "No" ) GROUP_AutoSave->setButton( 1 ); else GROUP_AutoSave->setButton( 2 ); |