summaryrefslogtreecommitdiffstats
path: root/kmail/antispamwizard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/antispamwizard.cpp')
-rw-r--r--kmail/antispamwizard.cpp58
1 files changed, 29 insertions, 29 deletions
diff --git a/kmail/antispamwizard.cpp b/kmail/antispamwizard.cpp
index 5552b058..e512e701 100644
--- a/kmail/antispamwizard.cpp
+++ b/kmail/antispamwizard.cpp
@@ -104,24 +104,24 @@ AntiSpamWizard::AntiSpamWizard( WizardMode mode,
( mMode == AntiSpam )
? i18n( "Welcome to the KMail Anti-Spam Wizard" )
: i18n( "Welcome to the KMail Anti-Virus Wizard" ) );
- connect( mInfoPage, TQT_SIGNAL( selectionChanged( void ) ),
- this, TQT_SLOT( checkProgramsSelections( void ) ) );
+ connect( mInfoPage, TQ_SIGNAL( selectionChanged( void ) ),
+ this, TQ_SLOT( checkProgramsSelections( void ) ) );
if ( mMode == AntiSpam ) {
mSpamRulesPage = new ASWizSpamRulesPage( 0, "", mainFolderTree );
addPage( mSpamRulesPage, i18n( "Options to fine-tune the handling of spam messages" ));
- connect( mSpamRulesPage, TQT_SIGNAL( selectionChanged( void ) ),
- this, TQT_SLOT( slotBuildSummary( void ) ) );
+ connect( mSpamRulesPage, TQ_SIGNAL( selectionChanged( void ) ),
+ this, TQ_SLOT( slotBuildSummary( void ) ) );
}
else {
mVirusRulesPage = new ASWizVirusRulesPage( 0, "", mainFolderTree );
addPage( mVirusRulesPage, i18n( "Options to fine-tune the handling of virus messages" ));
- connect( mVirusRulesPage, TQT_SIGNAL( selectionChanged( void ) ),
- this, TQT_SLOT( checkVirusRulesSelections( void ) ) );
+ connect( mVirusRulesPage, TQ_SIGNAL( selectionChanged( void ) ),
+ this, TQ_SLOT( checkVirusRulesSelections( void ) ) );
}
- connect( this, TQT_SIGNAL( helpClicked( void) ),
- this, TQT_SLOT( slotHelpClicked( void ) ) );
+ connect( this, TQ_SIGNAL( helpClicked( void) ),
+ this, TQ_SLOT( slotHelpClicked( void ) ) );
setNextEnabled( mInfoPage, false );
@@ -132,7 +132,7 @@ AntiSpamWizard::AntiSpamWizard( WizardMode mode,
setFinishEnabled( mSummaryPage, true );
}
- TQTimer::singleShot( 0, this, TQT_SLOT( checkToolAvailability( void ) ) );
+ TQTimer::singleShot( 0, this, TQ_SLOT( checkToolAvailability( void ) ) );
}
@@ -891,8 +891,8 @@ ASWizInfoPage::ASWizInfoPage( AntiSpamWizard::WizardMode mode,
mToolsList->setRowMode( TQListBox::FixedNumber );
mToolsList->setRowMode( 10 );
layout->addWidget( mToolsList );
- connect( mToolsList, TQT_SIGNAL(selectionChanged()),
- this, TQT_SLOT(processSelectionChange(void)) );
+ connect( mToolsList, TQ_SIGNAL(selectionChanged()),
+ this, TQ_SLOT(processSelectionChange(void)) );
mSelectionHint = new TQLabel( this );
mSelectionHint->setText( "" );
@@ -983,16 +983,16 @@ ASWizSpamRulesPage::ASWizSpamRulesPage( TQWidget * parent, const char * name,
layout->addStretch();
- connect( mMarkRules, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(processSelectionChange(void)) );
- connect( mMoveSpamRules, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(processSelectionChange(void)) );
- connect( mMoveUnsureRules, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(processSelectionChange(void)) );
- connect( mFolderReqForSpamFolder, TQT_SIGNAL(folderChanged(KMFolder*)),
- this, TQT_SLOT(processSelectionChange(KMFolder*)) );
- connect( mFolderReqForUnsureFolder, TQT_SIGNAL(folderChanged(KMFolder*)),
- this, TQT_SLOT(processSelectionChange(KMFolder*)) );
+ connect( mMarkRules, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(processSelectionChange(void)) );
+ connect( mMoveSpamRules, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(processSelectionChange(void)) );
+ connect( mMoveUnsureRules, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(processSelectionChange(void)) );
+ connect( mFolderReqForSpamFolder, TQ_SIGNAL(folderChanged(KMFolder*)),
+ this, TQ_SLOT(processSelectionChange(KMFolder*)) );
+ connect( mFolderReqForUnsureFolder, TQ_SIGNAL(folderChanged(KMFolder*)),
+ this, TQ_SLOT(processSelectionChange(KMFolder*)) );
mMarkRules->setChecked( true );
mMoveSpamRules->setChecked( true );
@@ -1093,14 +1093,14 @@ ASWizVirusRulesPage::ASWizVirusRulesPage( TQWidget * parent, const char * name,
mFolderTree = new SimpleFolderTree( this, mainFolderTree, s, true );
grid->addWidget( mFolderTree, 3, 0 );
- connect( mPipeRules, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(processSelectionChange(void)) );
- connect( mMoveRules, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(processSelectionChange(void)) );
- connect( mMarkRules, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(processSelectionChange(void)) );
- connect( mMoveRules, TQT_SIGNAL( toggled( bool ) ),
- mMarkRules, TQT_SLOT( setEnabled( bool ) ) );
+ connect( mPipeRules, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(processSelectionChange(void)) );
+ connect( mMoveRules, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(processSelectionChange(void)) );
+ connect( mMarkRules, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(processSelectionChange(void)) );
+ connect( mMoveRules, TQ_SIGNAL( toggled( bool ) ),
+ mMarkRules, TQ_SLOT( setEnabled( bool ) ) );
}
bool ASWizVirusRulesPage::pipeRulesSelected() const