summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/yahoo/libkyahoo/logintask.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/yahoo/libkyahoo/logintask.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/yahoo/libkyahoo/logintask.h')
-rw-r--r--kopete/protocols/yahoo/libkyahoo/logintask.h42
1 files changed, 21 insertions, 21 deletions
diff --git a/kopete/protocols/yahoo/libkyahoo/logintask.h b/kopete/protocols/yahoo/libkyahoo/logintask.h
index a3701692..563cd3a4 100644
--- a/kopete/protocols/yahoo/libkyahoo/logintask.h
+++ b/kopete/protocols/yahoo/libkyahoo/logintask.h
@@ -47,47 +47,47 @@ public:
void reset();
void setStateOnConnect( Yahoo::Status status );
- void setVerificationWord( const QString &word );
+ void setVerificationWord( const TQString &word );
- const QString &yCookie();
- const QString &cCookie();
- const QString &tCookie();
- const QString &loginCookie();
+ const TQString &yCookie();
+ const TQString &cCookie();
+ const TQString &tCookie();
+ const TQString &loginCookie();
protected:
virtual bool forMe( const Transfer* transfer ) const;
enum State { InitialState, SentVerify, GotVerifyACK, SentAuth, GotAuthACK, SentAuthResp };
void sendVerify();
void sendAuth(YMSGTransfer* transfer);
void sendAuthResp(YMSGTransfer* transfer);
- void sendAuthResp_0x0b(const QString &sn, const QString &seed, uint sessionID);
- void sendAuthResp_pre_0x0b(const QString &sn, const QString &seed);
+ void sendAuthResp_0x0b(const TQString &sn, const TQString &seed, uint sessionID);
+ void sendAuthResp_pre_0x0b(const TQString &sn, const TQString &seed);
void handleAuthResp(YMSGTransfer *transfer);
void parseCookies( YMSGTransfer *transfer );
- void sendAuthSixteenStage1(const QString& sn, const QString& seed);
- void sendAuthSixteenStage2(const QString& token);
- void sendAuthSixteenStage3(const QString& cryptString);
+ void sendAuthSixteenStage1(const TQString& sn, const TQString& seed);
+ void sendAuthSixteenStage2(const TQString& token);
+ void sendAuthSixteenStage3(const TQString& cryptString);
protected slots:
- void handleAuthSixteenStage1Data(KIO::Job*, const QByteArray& data);
+ void handleAuthSixteenStage1Data(KIO::Job*, const TQByteArray& data);
void handleAuthSixteenStage1Result(KIO::Job*);
- void handleAuthSixteenStage2Data(KIO::Job*, const QByteArray& data);
+ void handleAuthSixteenStage2Data(KIO::Job*, const TQByteArray& data);
void handleAuthSixteenStage2Result(KIO::Job*);
signals:
void haveSessionID( uint );
void haveCookies();
- void loginResponse( int, const QString& );
+ void loginResponse( int, const TQString& );
void buddyListReady();
private:
State mState;
Yahoo::Status m_stateOnConnect;
- QString m_yCookie;
- QString m_tCookie;
- QString m_cCookie;
- QString m_loginCookie;
- QString m_verificationWord;
- QString m_stage1Data;
- QString m_stage2Data;
- QString m_challengeString;
+ TQString m_yCookie;
+ TQString m_tCookie;
+ TQString m_cCookie;
+ TQString m_loginCookie;
+ TQString m_verificationWord;
+ TQString m_stage1Data;
+ TQString m_stage2Data;
+ TQString m_challengeString;
uint m_sessionID;
};