summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/oscar/liboscar/aimlogintask.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/oscar/liboscar/aimlogintask.h')
-rw-r--r--kopete/protocols/oscar/liboscar/aimlogintask.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/kopete/protocols/oscar/liboscar/aimlogintask.h b/kopete/protocols/oscar/liboscar/aimlogintask.h
index 66308178..cc564592 100644
--- a/kopete/protocols/oscar/liboscar/aimlogintask.h
+++ b/kopete/protocols/oscar/liboscar/aimlogintask.h
@@ -33,9 +33,9 @@ public:
virtual void onGo();
//Protocol specific stuff
- const QByteArray& cookie() const;
- const QString& bosHost() const;
- const QString& bosPort() const;
+ const TQByteArray& cookie() const;
+ const TQString& bosHost() const;
+ const TQString& bosPort() const;
protected:
bool forMe( Transfer* transfer ) const;
@@ -45,7 +45,7 @@ signals:
private:
//! Encodes a password using MD5
- void encodePassword( QByteArray& digest ) const;
+ void encodePassword( TQByteArray& digest ) const;
//! Send SNAC 0x17, 0x06
void sendAuthStringRequest();
@@ -58,7 +58,7 @@ private:
//! Parse the error codes to generate a reason why sign-on failed
//Massive code duplication with CloseConnectionTask
- bool parseDisconnectCode( int error, QString& reason );
+ bool parseDisconnectCode( int error, TQString& reason );
private slots:
//! Send SNAC 0x17, 0x02
@@ -66,16 +66,16 @@ private slots:
private:
//! The authorization key to use when encoding the password
- QByteArray m_authKey;
+ TQByteArray m_authKey;
//! The all important connection cookie
- QByteArray m_cookie;
+ TQByteArray m_cookie;
//! The new BOS Host
- QString m_bosHost;
+ TQString m_bosHost;
//! The new BOS Port
- QString m_bosPort;
+ TQString m_bosPort;
};