summaryrefslogtreecommitdiffstats
path: root/kshowmail/kcmconfigs/mailboxwizard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kshowmail/kcmconfigs/mailboxwizard.cpp')
-rw-r--r--kshowmail/kcmconfigs/mailboxwizard.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kshowmail/kcmconfigs/mailboxwizard.cpp b/kshowmail/kcmconfigs/mailboxwizard.cpp
index 6c8a2b9..a64f1ad 100644
--- a/kshowmail/kcmconfigs/mailboxwizard.cpp
+++ b/kshowmail/kcmconfigs/mailboxwizard.cpp
@@ -27,7 +27,7 @@ MailBoxWizard::MailBoxWizard( TQWidget* parent, const char* name )
btnMailDir = new KPushButton( KGuiItem( TQString(), TQString( "folder" ), i18n( "Press to choose the mail directory" ), i18n( "Press to choose the mail directory" ) ), page1, "btnMailDir" );
btnMailDir->setSizePolicy( TQSizePolicy::Fixed, TQSizePolicy::Fixed );
layMain1->addWidget( btnMailDir );
- connect( btnMailDir, SIGNAL( clicked() ), this, SLOT( slotOpenDirDialog() ) );
+ connect( btnMailDir, TQ_SIGNAL( clicked() ), this, TQ_SLOT( slotOpenDirDialog() ) );
title1 = i18n( "Please choose the path to the mailboxes.\nKShowmail supports only MailDir boxes." );
addPage( page1, title1 );
@@ -48,7 +48,7 @@ MailBoxWizard::MailBoxWizard( TQWidget* parent, const char* name )
addPage( page2, title2 );
setFinishEnabled( page2, true );
- connect( this, SIGNAL( selected( const TQString& ) ), this, SLOT( slotPageChanged( const TQString& ) ) );
+ connect( this, TQ_SIGNAL( selected( const TQString& ) ), this, TQ_SLOT( slotPageChanged( const TQString& ) ) );
}