diff options
author | Michele Calgaro <[email protected]> | 2024-01-14 12:33:20 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-16 19:01:53 +0900 |
commit | b0f8eef013163b2098c2bb07e93cb9b194338b80 (patch) | |
tree | c35221250699030822f3c616b393f77e1ce47036 /wizards/overviewpage.cpp | |
parent | c2138cbe92142437d50f2e6cec6f8909da959234 (diff) | |
download | tdepim-b0f8eef013163b2098c2bb07e93cb9b194338b80.tar.gz tdepim-b0f8eef013163b2098c2bb07e93cb9b194338b80.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 3b3f9ec8f31978030c17309fae48335bea5c1587)
Diffstat (limited to 'wizards/overviewpage.cpp')
-rw-r--r-- | wizards/overviewpage.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
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 ); |