summaryrefslogtreecommitdiffstats
path: root/kmail/regexplineedit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/regexplineedit.cpp')
-rw-r--r--kmail/regexplineedit.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kmail/regexplineedit.cpp b/kmail/regexplineedit.cpp
index 1b14fb4f..e99528a9 100644
--- a/kmail/regexplineedit.cpp
+++ b/kmail/regexplineedit.cpp
@@ -1,4 +1,4 @@
-/* -*- mode: C++; c-file-style: "gnu" -*-
+/*
regexplineedit.cpp
This file is part of KMail, the KDE mail client.
@@ -76,8 +76,8 @@ namespace KMail {
setFocusProxy( mLineEdit );
hlay->addWidget( mLineEdit );
- connect( mLineEdit, TQT_SIGNAL( textChanged( const TQString & ) ),
- this, TQT_SIGNAL( textChanged( const TQString & ) ) );
+ connect( mLineEdit, TQ_SIGNAL( textChanged( const TQString & ) ),
+ this, TQ_SIGNAL( textChanged( const TQString & ) ) );
if( !TDETrader::self()->query("KRegExpEditor/KRegExpEditor").isEmpty() ) {
mRegExpEditButton = new TQPushButton( i18n("Edit..."), this,
@@ -86,8 +86,8 @@ namespace KMail {
TQSizePolicy::Fixed );
hlay->addWidget( mRegExpEditButton );
- connect( mRegExpEditButton, TQT_SIGNAL( clicked() ),
- this, TQT_SLOT( slotEditRegExp() ) );
+ connect( mRegExpEditButton, TQ_SIGNAL( clicked() ),
+ this, TQ_SLOT( slotEditRegExp() ) );
}
}
@@ -120,7 +120,7 @@ namespace KMail {
void RegExpLineEdit::slotEditRegExp()
{
if ( !mRegExpEditDialog )
- mRegExpEditDialog = KParts::ComponentFactory::createInstanceFromQuery<TQDialog>( "KRegExpEditor/KRegExpEditor", TQString(), TQT_TQOBJECT(this) );
+ mRegExpEditDialog = KParts::ComponentFactory::createInstanceFromQuery<TQDialog>( "KRegExpEditor/KRegExpEditor", TQString(), this );
KRegExpEditorInterface *iface =
static_cast<KRegExpEditorInterface *>( mRegExpEditDialog->tqt_cast( "KRegExpEditorInterface" ) );