summaryrefslogtreecommitdiffstats
path: root/kmail/customtemplates.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 12:33:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-16 19:01:53 +0900
commitb0f8eef013163b2098c2bb07e93cb9b194338b80 (patch)
treec35221250699030822f3c616b393f77e1ce47036 /kmail/customtemplates.cpp
parentc2138cbe92142437d50f2e6cec6f8909da959234 (diff)
downloadtdepim-b0f8eef013163b2098c2bb07e93cb9b194338b80.tar.gz
tdepim-b0f8eef013163b2098c2bb07e93cb9b194338b80.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 3b3f9ec8f31978030c17309fae48335bea5c1587)
Diffstat (limited to 'kmail/customtemplates.cpp')
-rw-r--r--kmail/customtemplates.cpp46
1 files changed, 23 insertions, 23 deletions
diff --git a/kmail/customtemplates.cpp b/kmail/customtemplates.cpp
index 5daf001d..4d4080ed 100644
--- a/kmail/customtemplates.cpp
+++ b/kmail/customtemplates.cpp
@@ -68,29 +68,29 @@ CustomTemplates::CustomTemplates( TQWidget *parent, const char *name )
mEditFrame->setEnabled( false );
- connect( mName, TQT_SIGNAL( textChanged ( const TQString &) ),
- this, TQT_SLOT( slotNameChanged( const TQString & ) ) );
- connect( mEdit, TQT_SIGNAL( textChanged() ),
- this, TQT_SLOT( slotTextChanged( void ) ) );
- connect( mToEdit, TQT_SIGNAL( textChanged(const TQString&) ),
- this, TQT_SLOT( slotTextChanged( void ) ) );
- connect( mCCEdit, TQT_SIGNAL( textChanged(const TQString&) ),
- this, TQT_SLOT( slotTextChanged( void ) ) );
-
- connect( mInsertCommand, TQT_SIGNAL( insertCommand(TQString, int) ),
- this, TQT_SLOT( slotInsertCommand(TQString, int) ) );
-
- connect( mAdd, TQT_SIGNAL( clicked() ),
- this, TQT_SLOT( slotAddClicked() ) );
- connect( mRemove, TQT_SIGNAL( clicked() ),
- this, TQT_SLOT( slotRemoveClicked() ) );
- connect( mList, TQT_SIGNAL( selectionChanged() ),
- this, TQT_SLOT( slotListSelectionChanged() ) );
- connect( mType, TQT_SIGNAL( activated( int ) ),
- this, TQT_SLOT( slotTypeActivated( int ) ) );
-
- connect( mKeyButton, TQT_SIGNAL( capturedShortcut( const TDEShortcut& ) ),
- this, TQT_SLOT( slotShortcutCaptured( const TDEShortcut& ) ) );
+ connect( mName, TQ_SIGNAL( textChanged ( const TQString &) ),
+ this, TQ_SLOT( slotNameChanged( const TQString & ) ) );
+ connect( mEdit, TQ_SIGNAL( textChanged() ),
+ this, TQ_SLOT( slotTextChanged( void ) ) );
+ connect( mToEdit, TQ_SIGNAL( textChanged(const TQString&) ),
+ this, TQ_SLOT( slotTextChanged( void ) ) );
+ connect( mCCEdit, TQ_SIGNAL( textChanged(const TQString&) ),
+ this, TQ_SLOT( slotTextChanged( void ) ) );
+
+ connect( mInsertCommand, TQ_SIGNAL( insertCommand(TQString, int) ),
+ this, TQ_SLOT( slotInsertCommand(TQString, int) ) );
+
+ connect( mAdd, TQ_SIGNAL( clicked() ),
+ this, TQ_SLOT( slotAddClicked() ) );
+ connect( mRemove, TQ_SIGNAL( clicked() ),
+ this, TQ_SLOT( slotRemoveClicked() ) );
+ connect( mList, TQ_SIGNAL( selectionChanged() ),
+ this, TQ_SLOT( slotListSelectionChanged() ) );
+ connect( mType, TQ_SIGNAL( activated( int ) ),
+ this, TQ_SLOT( slotTypeActivated( int ) ) );
+
+ connect( mKeyButton, TQ_SIGNAL( capturedShortcut( const TDEShortcut& ) ),
+ this, TQ_SLOT( slotShortcutCaptured( const TDEShortcut& ) ) );
mReplyPix = TDEIconLoader().loadIcon( "mail-reply-sender", TDEIcon::Small );
mReplyAllPix = TDEIconLoader().loadIcon( "mail-reply-all", TDEIcon::Small );