summaryrefslogtreecommitdiffstats
path: root/kshowmail/kcmconfigs/configspamcheck.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kshowmail/kcmconfigs/configspamcheck.cpp')
-rw-r--r--kshowmail/kcmconfigs/configspamcheck.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kshowmail/kcmconfigs/configspamcheck.cpp b/kshowmail/kcmconfigs/configspamcheck.cpp
index 0b4d11e..7d23719 100644
--- a/kshowmail/kcmconfigs/configspamcheck.cpp
+++ b/kshowmail/kcmconfigs/configspamcheck.cpp
@@ -42,7 +42,7 @@ ConfigSpamcheck::ConfigSpamcheck(TQWidget * parent, const char * name, const TQS
btnTest = new KPushButton( KStdGuiItem::test(), this, "btnTest" );
btnTest->setSizePolicy( TQSizePolicy::Maximum, TQSizePolicy::Maximum );
layMain->addWidget( btnTest );
- connect( btnTest, SIGNAL( clicked() ), this, SLOT( slotTestSpamAssassin() ) );
+ connect( btnTest, TQ_SIGNAL( clicked() ), this, TQ_SLOT( slotTestSpamAssassin() ) );
//action
gboxAction = new TQGroupBox( 0, TQt::Horizontal, i18n( "Action for Spam" ), this, "gboxAction" );
@@ -52,8 +52,8 @@ ConfigSpamcheck::ConfigSpamcheck(TQWidget * parent, const char * name, const TQS
cmbAction = new KComboBox( gboxAction, "cmbAction" );
layAction->addWidget( cmbAction );
TQToolTip::add( cmbAction, i18n( "Choose the action for spam mails." ) );
- connect( cmbAction, SIGNAL( activated( int ) ), this, SLOT( slotActionChanged( int ) ) );
- connect( cmbAction, SIGNAL( activated( int ) ), this, SLOT( slotChanged() ) );
+ connect( cmbAction, TQ_SIGNAL( activated( int ) ), this, TQ_SLOT( slotActionChanged( int ) ) );
+ connect( cmbAction, TQ_SIGNAL( activated( int ) ), this, TQ_SLOT( slotChanged() ) );
//insert items
cmbAction->insertItem( i18n( "Delete" ), ID_SPAM_ACTION_BUTTONS_DELETE );
@@ -63,13 +63,13 @@ ConfigSpamcheck::ConfigSpamcheck(TQWidget * parent, const char * name, const TQS
//create edit line to defined the mailbox for move
txtMailbox = new KLineEdit( gboxAction );
layAction->addWidget( txtMailbox );
- connect( txtMailbox, SIGNAL( textChanged( const TQString & ) ), this, SLOT( slotChanged() ) );
+ connect( txtMailbox, TQ_SIGNAL( textChanged( const TQString & ) ), this, TQ_SLOT( slotChanged() ) );
//create wizard button to configure mailbox
btnMailboxWizard= new KPushButton( KGuiItem( TQString::null, "wizard" ), gboxAction );
layAction->addWidget( btnMailboxWizard );
TQToolTip::add( btnMailboxWizard, i18n( "Choose the mailbox" ) );
- connect( btnMailboxWizard, SIGNAL( clicked() ), this, SLOT( slotOpenMailBoxWizard() ) );
+ connect( btnMailboxWizard, TQ_SIGNAL( clicked() ), this, TQ_SLOT( slotOpenMailBoxWizard() ) );
//set defaults
switch( DEFAULT_SPAMCHECK_ACTION )