diff options
Diffstat (limited to 'kopete/protocols/gadu/gaduaccount.cpp')
-rw-r--r-- | kopete/protocols/gadu/gaduaccount.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kopete/protocols/gadu/gaduaccount.cpp b/kopete/protocols/gadu/gaduaccount.cpp index 208e6421..97267c85 100644 --- a/kopete/protocols/gadu/gaduaccount.cpp +++ b/kopete/protocols/gadu/gaduaccount.cpp @@ -255,35 +255,35 @@ GaduAccount::actionMenu() arg( myself()->property( Kopete::Global::Properties::self()->nickName()).value().toString(), accountId() ) ); if ( p->session_->isConnected() ) { - p->searchAction->setEnabled( TRUE ); - p->listputAction->setEnabled( TRUE ); - p->friendsModeAction->setEnabled( TRUE ); + p->searchAction->setEnabled( true ); + p->listputAction->setEnabled( true ); + p->friendsModeAction->setEnabled( true ); } else { - p->searchAction->setEnabled( FALSE ); - p->listputAction->setEnabled( FALSE ); - p->friendsModeAction->setEnabled( FALSE ); + p->searchAction->setEnabled( false ); + p->listputAction->setEnabled( false ); + p->friendsModeAction->setEnabled( false ); } if ( contacts().count() > 1 ) { if ( p->saveListDialog ) { - p->listToFileAction->setEnabled( FALSE ); + p->listToFileAction->setEnabled( false ); } else { - p->listToFileAction->setEnabled( TRUE ); + p->listToFileAction->setEnabled( true ); } - p->listToFileAction->setEnabled( TRUE ); + p->listToFileAction->setEnabled( true ); } else { - p->listToFileAction->setEnabled( FALSE ); + p->listToFileAction->setEnabled( false ); } if ( p->loadListDialog ) { - p->listFromFileAction->setEnabled( FALSE ); + p->listFromFileAction->setEnabled( false ); } else { - p->listFromFileAction->setEnabled( TRUE ); + p->listFromFileAction->setEnabled( true ); } p->actionMenu_->insert( new TDEAction( i18n( "Go O&nline" ), GaduProtocol::protocol()->convertStatus( GG_STATUS_AVAIL ).iconFor( this ), |