summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/jabber/kioslave
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-22 00:30:31 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-22 00:30:31 +0000
commit69cac65817d949cda2672ec4f0aa73d5e66a0ba1 (patch)
tree073fde0496ea90eb5bf5cffe66a8da43a9f55fbc /kopete/protocols/jabber/kioslave
parent3467e6464beac3a162839bf7078e22e3a74d73e7 (diff)
downloadtdenetwork-69cac65817d949cda2672ec4f0aa73d5e66a0ba1.tar.gz
tdenetwork-69cac65817d949cda2672ec4f0aa73d5e66a0ba1.zip
TQt4 port kdenetwork
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1237912 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/protocols/jabber/kioslave')
-rw-r--r--kopete/protocols/jabber/kioslave/jabberdisco.cpp6
-rw-r--r--kopete/protocols/jabber/kioslave/jabberdisco.h1
2 files changed, 4 insertions, 3 deletions
diff --git a/kopete/protocols/jabber/kioslave/jabberdisco.cpp b/kopete/protocols/jabber/kioslave/jabberdisco.cpp
index 4ceeca09..ae95eadb 100644
--- a/kopete/protocols/jabber/kioslave/jabberdisco.cpp
+++ b/kopete/protocols/jabber/kioslave/jabberdisco.cpp
@@ -57,7 +57,7 @@ void JabberDiscoProtocol::setHost ( const TQString &host, int port, const TQStri
m_host = host;
m_port = !port ? 5222 : port;
- m_user = TQString(user).replace ( "%", "@" );
+ m_user = TQString(user).tqreplace ( "%", "@" );
m_password = pass;
}
@@ -340,7 +340,7 @@ void JabberDiscoProtocol::slotCSError ( int errorCode )
bool breakEventLoop = false;
-class EventLoopThread : public QThread
+class EventLoopThread : public TQThread
{
public:
void run ();
@@ -351,7 +351,7 @@ void EventLoopThread::run ()
while ( true )
{
- qApp->processEvents ();
+ tqApp->processEvents ();
msleep ( 100 );
if ( breakEventLoop )
diff --git a/kopete/protocols/jabber/kioslave/jabberdisco.h b/kopete/protocols/jabber/kioslave/jabberdisco.h
index ef6e75fa..19a12d8a 100644
--- a/kopete/protocols/jabber/kioslave/jabberdisco.h
+++ b/kopete/protocols/jabber/kioslave/jabberdisco.h
@@ -37,6 +37,7 @@ class JabberDiscoProtocol : public TQObject, public KIO::SlaveBase
{
Q_OBJECT
+ TQ_OBJECT
public:
JabberDiscoProtocol ( const TQCString &pool_socket, const TQCString &app_socket );