From 3b3f9ec8f31978030c17309fae48335bea5c1587 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 14 Jan 2024 12:33:20 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- kmail/regexplineedit.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kmail/regexplineedit.cpp') diff --git a/kmail/regexplineedit.cpp b/kmail/regexplineedit.cpp index 0b297451..e99528a9 100644 --- a/kmail/regexplineedit.cpp +++ b/kmail/regexplineedit.cpp @@ -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() ) ); } } -- cgit v1.2.3