summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/jabber/ui/dlgjabberbrowse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/jabber/ui/dlgjabberbrowse.cpp')
-rw-r--r--kopete/protocols/jabber/ui/dlgjabberbrowse.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kopete/protocols/jabber/ui/dlgjabberbrowse.cpp b/kopete/protocols/jabber/ui/dlgjabberbrowse.cpp
index 10c11b0f..64970573 100644
--- a/kopete/protocols/jabber/ui/dlgjabberbrowse.cpp
+++ b/kopete/protocols/jabber/ui/dlgjabberbrowse.cpp
@@ -45,7 +45,7 @@ dlgJabberBrowse::dlgJabberBrowse (JabberAccount *account, const XMPP::Jid & jid,
XMPP::JT_Search * task = new XMPP::JT_Search (m_account->client()->rootTask ());
- connect (task, TQT_SIGNAL (finished ()), this, TQT_SLOT (slotGotForm ()));
+ connect (task, TQ_SIGNAL (finished ()), this, TQ_SLOT (slotGotForm ()));
task->get (jid);
task->go (true);
@@ -83,7 +83,7 @@ void dlgJabberBrowse::slotGotForm ()
tblResults->setColumnStretchable (i, true);
}
- connect (btnSearch, TQT_SIGNAL (clicked ()), this, TQT_SLOT (slotSendForm ()));
+ connect (btnSearch, TQ_SIGNAL (clicked ()), this, TQ_SLOT (slotSendForm ()));
}
@@ -92,7 +92,7 @@ void dlgJabberBrowse::slotSendForm ()
XMPP::JT_Search * task = new XMPP::JT_Search (m_account->client()->rootTask ());
- connect (task, TQT_SIGNAL (finished ()), this, TQT_SLOT (slotSentForm ()));
+ connect (task, TQ_SIGNAL (finished ()), this, TQ_SLOT (slotSentForm ()));
task->set (translator->resultData ());
task->go (true);