summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/jabber/jingle/jinglewatchsessiontask.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/jabber/jingle/jinglewatchsessiontask.cpp')
-rw-r--r--kopete/protocols/jabber/jingle/jinglewatchsessiontask.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kopete/protocols/jabber/jingle/jinglewatchsessiontask.cpp b/kopete/protocols/jabber/jingle/jinglewatchsessiontask.cpp
index fc7de053..571f9ff6 100644
--- a/kopete/protocols/jabber/jingle/jinglewatchsessiontask.cpp
+++ b/kopete/protocols/jabber/jingle/jinglewatchsessiontask.cpp
@@ -31,30 +31,30 @@ JingleWatchSessionTask::~JingleWatchSessionTask()
{}
//NOTE: This task watch for pre-JEP session.
-bool JingleWatchSessionTask::take(const QDomElement &element)
+bool JingleWatchSessionTask::take(const TQDomElement &element)
{
if(element.tagName() != "iq")
return false;
- QString sessionType, initiator;
+ TQString sessionType, initiator;
- QDomElement first = element.firstChild().toElement();
+ TQDomElement first = element.firstChild().toElement();
if( !first.isNull() && first.attribute("xmlns") == JINGLE_NS && first.tagName() == "session" )
{
kdDebug(JABBER_DEBUG_GLOBAL) << k_funcinfo << "Checking for incoming sesssion." << endl;
initiator = first.attribute("initiator");
// Only proceed initiate type Jingle XMPP call.
- if( first.attribute("type") != QString::fromUtf8("initiate") )
+ if( first.attribute("type") != TQString::fromUtf8("initiate") )
return false;
int nodeIndex;
- QDomNodeList nodeList = first.childNodes();
+ TQDomNodeList nodeList = first.childNodes();
// Do not check first child
for(nodeIndex = 0; nodeIndex < nodeList.length(); nodeIndex++)
{
- QDomElement nodeElement = nodeList.item(nodeIndex).toElement();
+ TQDomElement nodeElement = nodeList.item(nodeIndex).toElement();
if(nodeElement.tagName() == "description")
{
sessionType = nodeElement.attribute("xmlns");