diff options
Diffstat (limited to 'tdeutils/tdecmodulecontainer.cpp')
-rw-r--r-- | tdeutils/tdecmodulecontainer.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tdeutils/tdecmodulecontainer.cpp b/tdeutils/tdecmodulecontainer.cpp index 2df7a0421..7a0337615 100644 --- a/tdeutils/tdecmodulecontainer.cpp +++ b/tdeutils/tdecmodulecontainer.cpp @@ -91,7 +91,7 @@ void TDECModuleContainer::init() d->topLayout = new TQVBoxLayout( this, 0, KDialog::spacingHint(), "topLayout" ); d->tabWidget = new TQTabWidget(this, "tabWidget"); d->tabWidget->setMargin(KDialog::marginHint()); - connect( d->tabWidget, TQT_SIGNAL( currentChanged( TQWidget* ) ), TQT_SLOT( tabSwitched( TQWidget* ) )); + connect( d->tabWidget, TQ_SIGNAL( currentChanged( TQWidget* ) ), TQ_SLOT( tabSwitched( TQWidget* ) )); d->topLayout->addWidget( d->tabWidget ); if ( !d->modules.isEmpty() ) @@ -152,7 +152,7 @@ void TDECModuleContainer::addModule( const TQString& module ) d->tabWidget->setTabToolTip( proxy, proxy->moduleInfo().comment() ); - connect( proxy, TQT_SIGNAL(changed(TDECModuleProxy *)), TQT_SLOT(moduleChanged(TDECModuleProxy *))); + connect( proxy, TQ_SIGNAL(changed(TDECModuleProxy *)), TQ_SLOT(moduleChanged(TDECModuleProxy *))); /* Collect our buttons - we go for the common deliminator */ d->buttons = d->buttons | proxy->realModule()->buttons(); @@ -178,10 +178,10 @@ void TDECModuleContainer::tabSwitched( TQWidget * module ) if ( mod->moduleInfo().needsRootPrivileges() && !mod->rootMode() ) { d->btnRootMode->setEnabled( true ); - connect( d->btnRootMode, TQT_SIGNAL( clicked() ), - TQT_SLOT( runAsRoot() )); - connect( mod, TQT_SIGNAL( childClosed() ), - TQT_SLOT ( rootExited() )); + connect( d->btnRootMode, TQ_SIGNAL( clicked() ), + TQ_SLOT( runAsRoot() )); + connect( mod, TQ_SIGNAL( childClosed() ), + TQ_SLOT ( rootExited() )); } else { d->btnRootMode->setEnabled( false ); @@ -205,7 +205,7 @@ void TDECModuleContainer::runAsRoot() void TDECModuleContainer::rootExited() { - connect( d->btnRootMode, TQT_SIGNAL( clicked() ), TQT_SLOT( runAsRoot() )); + connect( d->btnRootMode, TQ_SIGNAL( clicked() ), TQ_SLOT( runAsRoot() )); d->btnRootMode->setEnabled( true ); } |