summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/jabber/libiris/iris/xmpp-im
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:26:34 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:26:34 +0000
commit36e4074ba1536a63a121293b20663a38cad836b7 (patch)
tree5ec4cb3822a30ce8d43a9904931907ade1d7fe2c /kopete/protocols/jabber/libiris/iris/xmpp-im
parent47c8a359c5276062c4bc17f0e82410f29081b502 (diff)
downloadtdenetwork-36e4074ba1536a63a121293b20663a38cad836b7.tar.gz
tdenetwork-36e4074ba1536a63a121293b20663a38cad836b7.zip
TQt conversion fixes
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1158449 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/protocols/jabber/libiris/iris/xmpp-im')
-rw-r--r--kopete/protocols/jabber/libiris/iris/xmpp-im/xmpp_tasks.cpp2
-rw-r--r--kopete/protocols/jabber/libiris/iris/xmpp-im/xmpp_vcard.h2
-rw-r--r--kopete/protocols/jabber/libiris/iris/xmpp-im/xmpp_xmlcommon.h10
3 files changed, 7 insertions, 7 deletions
diff --git a/kopete/protocols/jabber/libiris/iris/xmpp-im/xmpp_tasks.cpp b/kopete/protocols/jabber/libiris/iris/xmpp-im/xmpp_tasks.cpp
index 95f61e69..9e2fc061 100644
--- a/kopete/protocols/jabber/libiris/iris/xmpp-im/xmpp_tasks.cpp
+++ b/kopete/protocols/jabber/libiris/iris/xmpp-im/xmpp_tasks.cpp
@@ -387,7 +387,7 @@ TQString JT_Roster::toString() const
bool JT_Roster::fromString(const TQString &str)
{
- TQDomDocument *dd = new QDomDocument;
+ TQDomDocument *dd = new TQDomDocument;
if(!dd->setContent(lineDecode(str).utf8()))
return false;
TQDomElement e = doc()->importNode(dd->documentElement(), true).toElement();
diff --git a/kopete/protocols/jabber/libiris/iris/xmpp-im/xmpp_vcard.h b/kopete/protocols/jabber/libiris/iris/xmpp-im/xmpp_vcard.h
index 885e08a9..e1ea742b 100644
--- a/kopete/protocols/jabber/libiris/iris/xmpp-im/xmpp_vcard.h
+++ b/kopete/protocols/jabber/libiris/iris/xmpp-im/xmpp_vcard.h
@@ -28,7 +28,7 @@
#include <tqvaluelist.h>
#include <tqdom.h>
-class QDate;
+class TQDate;
namespace XMPP
{
diff --git a/kopete/protocols/jabber/libiris/iris/xmpp-im/xmpp_xmlcommon.h b/kopete/protocols/jabber/libiris/iris/xmpp-im/xmpp_xmlcommon.h
index 926395e9..f6a94e59 100644
--- a/kopete/protocols/jabber/libiris/iris/xmpp-im/xmpp_xmlcommon.h
+++ b/kopete/protocols/jabber/libiris/iris/xmpp-im/xmpp_xmlcommon.h
@@ -23,11 +23,11 @@
#include<tqdom.h>
-class QDateTime;
-class QRect;
-class QSize;
-class QColor;
-class QStringList;
+class TQDateTime;
+class TQRect;
+class TQSize;
+class TQColor;
+class TQStringList;
bool stamp2TS(const TQString &ts, TQDateTime *d);
TQString TS2stamp(const TQDateTime &d);