summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/sms/smseditaccountwidget.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-13 17:34:53 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-18 09:59:16 +0900
commit40393e30bb743346b6b40bf130da35419c12ebdc (patch)
tree9330d82486c7b3125b8275914565b324f9af523e /kopete/protocols/sms/smseditaccountwidget.cpp
parent05594058244ba6a1866d5758ae412fb5afd6d727 (diff)
downloadtdenetwork-40393e30.tar.gz
tdenetwork-40393e30.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 1329ec6abbcb7b79cd960e0ca138f16598d5f11f)
Diffstat (limited to 'kopete/protocols/sms/smseditaccountwidget.cpp')
-rw-r--r--kopete/protocols/sms/smseditaccountwidget.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kopete/protocols/sms/smseditaccountwidget.cpp b/kopete/protocols/sms/smseditaccountwidget.cpp
index 11771f9e..5994534d 100644
--- a/kopete/protocols/sms/smseditaccountwidget.cpp
+++ b/kopete/protocols/sms/smseditaccountwidget.cpp
@@ -63,10 +63,10 @@ SMSEditAccountWidget::SMSEditAccountWidget(SMSProtocol *protocol, Kopete::Accoun
preferencesDialog->serviceName->insertStringList(ServiceLoader::services());
- connect (preferencesDialog->serviceName, TQT_SIGNAL(activated(const TQString &)),
- this, TQT_SLOT(setServicePreferences(const TQString &)));
- connect (preferencesDialog->descButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(showDescription()));
+ connect (preferencesDialog->serviceName, TQ_SIGNAL(activated(const TQString &)),
+ this, TQ_SLOT(setServicePreferences(const TQString &)));
+ connect (preferencesDialog->descButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(showDescription()));
for (int i=0; i < preferencesDialog->serviceName->count(); i++)
@@ -118,7 +118,7 @@ void SMSEditAccountWidget::setServicePreferences(const TQString& serviceName)
if (service == 0L)
return;
- connect (this, TQT_SIGNAL(saved()), service, TQT_SLOT(savePreferences()));
+ connect (this, TQ_SIGNAL(saved()), service, TQ_SLOT(savePreferences()));
delete middleFrameLayout;
middleFrameLayout = new TQGridLayout(preferencesDialog->middleFrame, 1, 2, 0, 6, "middleFrameLayout");