diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-14 12:33:20 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-14 12:43:48 +0900 |
commit | 3b3f9ec8f31978030c17309fae48335bea5c1587 (patch) | |
tree | 0b493383a1501860371aacd792ec6fc08d595824 /wizards | |
parent | 99e6e1d1f43610c3573e9824a2a8a38f69930cd0 (diff) | |
download | tdepim-3b3f9ec8f31978030c17309fae48335bea5c1587.tar.gz tdepim-3b3f9ec8f31978030c17309fae48335bea5c1587.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/groupwarewizard.cpp | 4 | ||||
-rw-r--r-- | wizards/groupwisewizard.cpp | 8 | ||||
-rw-r--r-- | wizards/overviewpage.cpp | 10 |
3 files changed, 11 insertions, 11 deletions
diff --git a/wizards/groupwarewizard.cpp b/wizards/groupwarewizard.cpp index 1f520ce5f..3df995ce0 100644 --- a/wizards/groupwarewizard.cpp +++ b/wizards/groupwarewizard.cpp @@ -39,8 +39,8 @@ GroupwareWizard::GroupwareWizard( TQWidget *parent, const char *name ) layout->addWidget( mOverViewPage ); - connect( mOverViewPage, TQT_SIGNAL( cancel() ), - tqApp, TQT_SLOT( quit() ) ); + connect( mOverViewPage, TQ_SIGNAL( cancel() ), + tqApp, TQ_SLOT( quit() ) ); resize( 400, 200 ); } diff --git a/wizards/groupwisewizard.cpp b/wizards/groupwisewizard.cpp index 6081bb004..f6b019efb 100644 --- a/wizards/groupwisewizard.cpp +++ b/wizards/groupwisewizard.cpp @@ -320,8 +320,8 @@ GroupwiseWizard::GroupwiseWizard() : TDEConfigWizard( new GroupwisePropagator ) topLayout->addWidget( mEmailBox, 0, 0 ); mEmailWidget = new TQWidget( mEmailBox ); - connect( mEmailBox, TQT_SIGNAL( toggled( bool ) ), mEmailWidget, - TQT_SLOT( setEnabled( bool ) ) ); + connect( mEmailBox, TQ_SIGNAL( toggled( bool ) ), mEmailWidget, + TQ_SLOT( setEnabled( bool ) ) ); TQGridLayout *accountLayout= new TQGridLayout( mEmailWidget ); accountLayout->setSpacing( spacingHint() ); @@ -340,8 +340,8 @@ GroupwiseWizard::GroupwiseWizard() : TDEConfigWizard( new GroupwisePropagator ) accountLayout->setRowStretch( 2, 1 ); - connect( this, TQT_SIGNAL( aboutToShowPage( TQWidget * ) ), - TQT_SLOT( slotAboutToShowPage( TQWidget * ) ) ); + connect( this, TQ_SIGNAL( aboutToShowPage( TQWidget * ) ), + TQ_SLOT( slotAboutToShowPage( TQWidget * ) ) ); setupRulesPage(); diff --git a/wizards/overviewpage.cpp b/wizards/overviewpage.cpp index e9f6596a3..9e4aba5df 100644 --- a/wizards/overviewpage.cpp +++ b/wizards/overviewpage.cpp @@ -66,7 +66,7 @@ OverViewPage::OverViewPage( TQWidget *parent, const char *name ) #ifdef WITH_EGROUPWARE button = new TQPushButton( i18n("eGroupware"), this ); layout->addMultiCellWidget( button, 3, 3, 0, 3 ); - connect( button, TQT_SIGNAL( clicked() ), TQT_SLOT( showWizardEGroupware() ) ); + connect( button, TQ_SIGNAL( clicked() ), TQ_SLOT( showWizardEGroupware() ) ); #endif // FIXME: Maybe hyperlinks would be better than buttons. @@ -74,20 +74,20 @@ OverViewPage::OverViewPage( TQWidget *parent, const char *name ) #ifdef WITH_KOLAB button = new TQPushButton( i18n("Kolab"), this ); layout->addMultiCellWidget( button, 4, 4, 0, 3 ); - connect( button, TQT_SIGNAL( clicked() ), TQT_SLOT( showWizardKolab() ) ); + connect( button, TQ_SIGNAL( clicked() ), TQ_SLOT( showWizardKolab() ) ); #endif #ifdef WITH_SLOX button = new TQPushButton( i18n("SUSE Linux Openexchange (SLOX)"), this ); layout->addMultiCellWidget( button, 5, 5, 0, 3 ); - connect( button, TQT_SIGNAL( clicked() ), TQT_SLOT( showWizardSlox() ) ); + connect( button, TQ_SIGNAL( clicked() ), TQ_SLOT( showWizardSlox() ) ); #endif #ifdef WITH_NEWEXCHANGE button = new TQPushButton( i18n("Microsoft Exchange"), this ); button->hide(); // not quite ready yet layout->addMultiCellWidget( button, 6, 6, 0, 3 ); - connect( button, TQT_SIGNAL( clicked() ), TQT_SLOT( showWizardExchange() ) ); + connect( button, TQ_SIGNAL( clicked() ), TQ_SLOT( showWizardExchange() ) ); #endif TQFrame *frame = new TQFrame( this ); @@ -97,7 +97,7 @@ OverViewPage::OverViewPage( TQWidget *parent, const char *name ) TQPushButton *cancelButton = new KPushButton( KStdGuiItem::close(), this ); layout->addWidget( cancelButton, 8, 3 ); - connect( cancelButton, TQT_SIGNAL( clicked() ), this, TQT_SIGNAL( cancel() ) ); + connect( cancelButton, TQ_SIGNAL( clicked() ), this, TQ_SIGNAL( cancel() ) ); layout->setRowStretch( 7, 1 ); |