diff options
Diffstat (limited to 'kopete/protocols/jabber/kioslave/jabberdisco.h')
-rw-r--r-- | kopete/protocols/jabber/kioslave/jabberdisco.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kopete/protocols/jabber/kioslave/jabberdisco.h b/kopete/protocols/jabber/kioslave/jabberdisco.h index f2f6d78d..ef6e75fa 100644 --- a/kopete/protocols/jabber/kioslave/jabberdisco.h +++ b/kopete/protocols/jabber/kioslave/jabberdisco.h @@ -20,9 +20,9 @@ #ifndef _JABBERDISCO_H_ #define _JABBERDISCO_H_ -#include <qobject.h> -#include <qstring.h> -#include <qcstring.h> +#include <tqobject.h> +#include <tqstring.h> +#include <tqcstring.h> #include <kurl.h> #include <kio/global.h> @@ -33,16 +33,16 @@ class JabberClient; -class JabberDiscoProtocol : public QObject, public KIO::SlaveBase +class JabberDiscoProtocol : public TQObject, public KIO::SlaveBase { Q_OBJECT public: - JabberDiscoProtocol ( const QCString &pool_socket, const QCString &app_socket ); + JabberDiscoProtocol ( const TQCString &pool_socket, const TQCString &app_socket ); virtual ~JabberDiscoProtocol (); - void setHost ( const QString &host, int port, const QString &user, const QString &pass ); + void setHost ( const TQString &host, int port, const TQString &user, const TQString &pass ); void openConnection (); void closeConnection (); @@ -56,7 +56,7 @@ public: void dispatchLoop (); private slots: - void slotClientDebugMessage ( const QString &msg ); + void slotClientDebugMessage ( const TQString &msg ); void slotHandleTLSWarning ( int validityResult ); void slotClientError ( JabberClient::ErrorCode errorCode ); void slotConnected (); @@ -68,7 +68,7 @@ private slots: private: enum CommandType { Get, ListDir }; - QString m_host, m_user, m_password; + TQString m_host, m_user, m_password; int m_port; KURL m_url; bool m_connected; |