diff options
Diffstat (limited to 'kmail/kmsearchpatternedit.cpp')
-rw-r--r-- | kmail/kmsearchpatternedit.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kmail/kmsearchpatternedit.cpp b/kmail/kmsearchpatternedit.cpp index 4a8c82bd6..43f56e95f 100644 --- a/kmail/kmsearchpatternedit.cpp +++ b/kmail/kmsearchpatternedit.cpp @@ -121,12 +121,12 @@ void KMSearchRuleWidget::initWidget() // redirect focus to the header field combo box setFocusProxy( mRuleField ); - connect( mRuleField, TQT_SIGNAL( activated( const TQString & ) ), - this, TQT_SLOT( slotRuleFieldChanged( const TQString & ) ) ); - connect( mRuleField, TQT_SIGNAL( textChanged( const TQString & ) ), - this, TQT_SLOT( slotRuleFieldChanged( const TQString & ) ) ); - connect( mRuleField, TQT_SIGNAL( textChanged( const TQString & ) ), - this, TQT_SIGNAL( fieldChanged( const TQString & ) ) ); + connect( mRuleField, TQ_SIGNAL( activated( const TQString & ) ), + this, TQ_SLOT( slotRuleFieldChanged( const TQString & ) ) ); + connect( mRuleField, TQ_SIGNAL( textChanged( const TQString & ) ), + this, TQ_SLOT( slotRuleFieldChanged( const TQString & ) ) ); + connect( mRuleField, TQ_SIGNAL( textChanged( const TQString & ) ), + this, TQ_SIGNAL( fieldChanged( const TQString & ) ) ); } void KMSearchRuleWidget::setRule( KMSearchRule *aRule ) @@ -426,15 +426,15 @@ void KMSearchPatternEdit::initLayout(bool headersOnly, bool absoluteDates) mRuleLister->slotClear(); //------------connect a few signals - connect( bg, TQT_SIGNAL(clicked(int)), - this, TQT_SLOT(slotRadioClicked(int)) ); + connect( bg, TQ_SIGNAL(clicked(int)), + this, TQ_SLOT(slotRadioClicked(int)) ); KMSearchRuleWidget *srw = (KMSearchRuleWidget*)mRuleLister->mWidgetList.first(); if ( srw ) { - connect( srw, TQT_SIGNAL(fieldChanged(const TQString &)), - this, TQT_SLOT(slotAutoNameHack()) ); - connect( srw, TQT_SIGNAL(contentsChanged(const TQString &)), - this, TQT_SLOT(slotAutoNameHack()) ); + connect( srw, TQ_SIGNAL(fieldChanged(const TQString &)), + this, TQ_SLOT(slotAutoNameHack()) ); + connect( srw, TQ_SIGNAL(contentsChanged(const TQString &)), + this, TQ_SLOT(slotAutoNameHack()) ); } else kdDebug(5006) << "KMSearchPatternEdit: no first KMSearchRuleWidget, though slotClear() has been called!" << endl; } |