summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/oscar/liboscar/serverredirecttask.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
commit47c8a359c5276062c4bc17f0e82410f29081b502 (patch)
tree2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kopete/protocols/oscar/liboscar/serverredirecttask.h
parent6f82532777a35e0e60bbd2b290b2e93e646f349b (diff)
downloadtdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz
tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/protocols/oscar/liboscar/serverredirecttask.h')
-rw-r--r--kopete/protocols/oscar/liboscar/serverredirecttask.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/kopete/protocols/oscar/liboscar/serverredirecttask.h b/kopete/protocols/oscar/liboscar/serverredirecttask.h
index 785ac0df..972e28ce 100644
--- a/kopete/protocols/oscar/liboscar/serverredirecttask.h
+++ b/kopete/protocols/oscar/liboscar/serverredirecttask.h
@@ -23,7 +23,7 @@
#include "task.h"
-#include <qcstring.h>
+#include <tqcstring.h>
#include "oscartypes.h"
@@ -36,11 +36,11 @@ public:
ServerRedirectTask( Task* parent );
void setService( WORD family );
- void setChatParams( WORD exchange, QByteArray cookie, WORD instance );
- void setChatRoom( const QString& roomName );
+ void setChatParams( WORD exchange, TQByteArray cookie, WORD instance );
+ void setChatRoom( const TQString& roomName );
WORD chatExchange() const;
- QString chatRoomName() const;
+ TQString chatRoomName() const;
//Task implementation
void onGo();
@@ -50,22 +50,22 @@ public:
void requestNewService();
bool handleRedirect();
- QByteArray cookie() const;
- QString newHost() const;
+ TQByteArray cookie() const;
+ TQString newHost() const;
WORD service() const;
signals:
- void haveServer( const QString&, const QByteArray&, WORD );
+ void haveServer( const TQString&, const TQByteArray&, WORD );
private:
WORD m_service;
- QString m_newHost;
- QByteArray m_cookie;
+ TQString m_newHost;
+ TQByteArray m_cookie;
WORD m_chatExchange;
- QByteArray m_chatCookie;
+ TQByteArray m_chatCookie;
WORD m_chatInstance;
- QString m_chatRoom;
+ TQString m_chatRoom;
};