diff options
Diffstat (limited to 'kopete/protocols/sms/smseditaccountwidget.cpp')
-rw-r--r-- | kopete/protocols/sms/smseditaccountwidget.cpp | 10 |
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"); |