diff options
Diffstat (limited to 'kopete/protocols/sms/services/smssend.cpp')
-rw-r--r-- | kopete/protocols/sms/services/smssend.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kopete/protocols/sms/services/smssend.cpp b/kopete/protocols/sms/services/smssend.cpp index 73eb71db..0d22fd4f 100644 --- a/kopete/protocols/sms/services/smssend.cpp +++ b/kopete/protocols/sms/services/smssend.cpp @@ -67,8 +67,8 @@ void SMSSend::send(const Kopete::Message& msg) m_provider = new SMSSendProvider(provider, prefix, m_account, this); - TQObject::connect( m_provider, TQT_SIGNAL(messageSent(const Kopete::Message &)), this, TQT_SIGNAL(messageSent(const Kopete::Message &))); - TQObject::connect( m_provider, TQT_SIGNAL(messageNotSent(const Kopete::Message &, const TQString &)), this, TQT_SIGNAL(messageNotSent(const Kopete::Message &, const TQString &))); + TQObject::connect( m_provider, TQ_SIGNAL(messageSent(const Kopete::Message &)), this, TQ_SIGNAL(messageSent(const Kopete::Message &))); + TQObject::connect( m_provider, TQ_SIGNAL(messageNotSent(const Kopete::Message &, const TQString &)), this, TQ_SIGNAL(messageNotSent(const Kopete::Message &, const TQString &))); m_provider->send(msg); } @@ -108,13 +108,13 @@ void SMSSend::setWidgetContainer(TQWidget* parent, TQGridLayout* layout) } } - TQObject::connect (prefWidget->program, TQT_SIGNAL(textChanged(const TQString &)), - this, TQT_SLOT(loadProviders(const TQString&))); + TQObject::connect (prefWidget->program, TQ_SIGNAL(textChanged(const TQString &)), + this, TQ_SLOT(loadProviders(const TQString&))); prefWidget->program->setURL(prefix); - TQObject::connect(prefWidget->provider, TQT_SIGNAL(activated(const TQString &)), - this, TQT_SLOT(setOptions(const TQString &))); + TQObject::connect(prefWidget->provider, TQ_SIGNAL(activated(const TQString &)), + this, TQ_SLOT(setOptions(const TQString &))); prefWidget->show(); } |