diff options
Diffstat (limited to 'kmail/antispamwizard.cpp')
-rw-r--r-- | kmail/antispamwizard.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kmail/antispamwizard.cpp b/kmail/antispamwizard.cpp index dccca6a89..4091c715c 100644 --- a/kmail/antispamwizard.cpp +++ b/kmail/antispamwizard.cpp @@ -57,8 +57,8 @@ using namespace KMail; AntiSpamWizard::AntiSpamWizard( WizardMode mode, - TQWidget* tqparent, KMFolderTree * mainFolderTree ) - : KWizard( tqparent ), + TQWidget* parent, KMFolderTree * mainFolderTree ) + : KWizard( parent ), mInfoPage( 0 ), mSpamRulesPage( 0 ), mVirusRulesPage( 0 ), @@ -830,9 +830,9 @@ void AntiSpamWizard::ConfigReader::sortToolList() //--------------------------------------------------------------------------- -ASWizPage::ASWizPage( TQWidget * tqparent, const char * name, +ASWizPage::ASWizPage( TQWidget * parent, const char * name, const TQString *bannerName ) - : TQWidget( tqparent, name ) + : TQWidget( parent, name ) { TQString banner = "kmwizard.png"; if ( bannerName && !bannerName->isEmpty() ) @@ -852,8 +852,8 @@ ASWizPage::ASWizPage( TQWidget * tqparent, const char * name, //--------------------------------------------------------------------------- ASWizInfoPage::ASWizInfoPage( AntiSpamWizard::WizardMode mode, - TQWidget * tqparent, const char * name ) - : ASWizPage( tqparent, name ) + TQWidget * parent, const char * name ) + : ASWizPage( parent, name ) { TQBoxLayout * tqlayout = new TQVBoxLayout( mLayout ); @@ -936,9 +936,9 @@ void ASWizInfoPage::processSelectionChange() //--------------------------------------------------------------------------- -ASWizSpamRulesPage::ASWizSpamRulesPage( TQWidget * tqparent, const char * name, +ASWizSpamRulesPage::ASWizSpamRulesPage( TQWidget * parent, const char * name, KMFolderTree * mainFolderTree ) - : ASWizPage( tqparent, name ) + : ASWizPage( parent, name ) { TQVBoxLayout *tqlayout = new TQVBoxLayout( mLayout ); @@ -1059,9 +1059,9 @@ void ASWizSpamRulesPage::allowUnsureFolderSelection( bool enabled ) //--------------------------------------------------------------------------- -ASWizVirusRulesPage::ASWizVirusRulesPage( TQWidget * tqparent, const char * name, +ASWizVirusRulesPage::ASWizVirusRulesPage( TQWidget * parent, const char * name, KMFolderTree * mainFolderTree ) - : ASWizPage( tqparent, name ) + : ASWizPage( parent, name ) { TQGridLayout *grid = new TQGridLayout( mLayout, 5, 1, KDialog::spacingHint() ); @@ -1135,8 +1135,8 @@ void ASWizVirusRulesPage::processSelectionChange() //--------------------------------------------------------------------------- -ASWizSummaryPage::ASWizSummaryPage( TQWidget * tqparent, const char * name ) - : ASWizPage( tqparent, name ) +ASWizSummaryPage::ASWizSummaryPage( TQWidget * parent, const char * name ) + : ASWizPage( parent, name ) { TQBoxLayout * tqlayout = new TQVBoxLayout( mLayout ); |