diff options
author | Michele Calgaro <[email protected]> | 2024-01-14 12:33:20 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-14 12:43:48 +0900 |
commit | 3b3f9ec8f31978030c17309fae48335bea5c1587 (patch) | |
tree | 0b493383a1501860371aacd792ec6fc08d595824 /kmail/identitydialog.cpp | |
parent | 99e6e1d1f43610c3573e9824a2a8a38f69930cd0 (diff) | |
download | tdepim-3b3f9ec8f31978030c17309fae48335bea5c1587.tar.gz tdepim-3b3f9ec8f31978030c17309fae48335bea5c1587.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kmail/identitydialog.cpp')
-rw-r--r-- | kmail/identitydialog.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kmail/identitydialog.cpp b/kmail/identitydialog.cpp index 91b108c9a..a5c9af361 100644 --- a/kmail/identitydialog.cpp +++ b/kmail/identitydialog.cpp @@ -396,8 +396,8 @@ namespace KMail { mTransportCombo->setEnabled( false ); // since !mTransportCheck->isChecked() mTransportCombo->insertStringList( KMail::TransportManager::transportNames() ); glay->addWidget( mTransportCombo, row, 1 ); - connect( mTransportCheck, TQT_SIGNAL(toggled(bool)), - mTransportCombo, TQT_SLOT(setEnabled(bool)) ); + connect( mTransportCheck, TQ_SIGNAL(toggled(bool)), + mTransportCombo, TQ_SLOT(setEnabled(bool)) ); // the last row is a spacer @@ -416,12 +416,12 @@ namespace KMail { mCopyGlobal = new KPushButton( i18n("&Copy global templates"), tab ); mCopyGlobal->setEnabled( false ); btns->addWidget( mCopyGlobal ); - connect( mCustom, TQT_SIGNAL( toggled( bool ) ), - mWidget, TQT_SLOT( setEnabled( bool ) ) ); - connect( mCustom, TQT_SIGNAL( toggled( bool ) ), - mCopyGlobal, TQT_SLOT( setEnabled( bool ) ) ); - connect( mCopyGlobal, TQT_SIGNAL(clicked()), - this, TQT_SLOT(slotCopyGlobal()) ); + connect( mCustom, TQ_SIGNAL( toggled( bool ) ), + mWidget, TQ_SLOT( setEnabled( bool ) ) ); + connect( mCustom, TQ_SIGNAL( toggled( bool ) ), + mCopyGlobal, TQ_SLOT( setEnabled( bool ) ) ); + connect( mCopyGlobal, TQ_SIGNAL(clicked()), + this, TQ_SLOT(slotCopyGlobal()) ); // // Tab Widget: Signature @@ -439,8 +439,8 @@ namespace KMail { resize( geometry.readSizeEntry( "Identity Dialog size" ) ); mNameEdit->setFocus(); - connect( tabWidget, TQT_SIGNAL(currentChanged(TQWidget*)), - TQT_SLOT(slotAboutToShow(TQWidget*)) ); + connect( tabWidget, TQ_SIGNAL(currentChanged(TQWidget*)), + TQ_SLOT(slotAboutToShow(TQWidget*)) ); } IdentityDialog::~IdentityDialog() { |