diff options
Diffstat (limited to 'kopete/protocols/jabber/jingle/jinglesessionmanager.h')
-rw-r--r-- | kopete/protocols/jabber/jingle/jinglesessionmanager.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kopete/protocols/jabber/jingle/jinglesessionmanager.h b/kopete/protocols/jabber/jingle/jinglesessionmanager.h index 06951c2f..f9bb82b9 100644 --- a/kopete/protocols/jabber/jingle/jinglesessionmanager.h +++ b/kopete/protocols/jabber/jingle/jinglesessionmanager.h @@ -20,8 +20,8 @@ #include <xmpp.h> #include <im.h> -#include <qobject.h> -#include <qvaluelist.h> +#include <tqobject.h> +#include <tqvaluelist.h> namespace cricket { @@ -40,7 +40,7 @@ class JingleSessionManager : public QObject { Q_OBJECT public: - typedef QValueList<XMPP::Jid> JidList; + typedef TQValueList<XMPP::Jid> JidList; JingleSessionManager(JabberAccount *account); ~JingleSessionManager(); @@ -61,22 +61,22 @@ public slots: * @param sessionType the session you want to create. You must pass its XML namespace(ex: http://jabber.org/protocol/sessions/audio) * @param peers Lists of participants of the session. */ - JingleSession *createSession(const QString &sessionType, const JidList &peers); + JingleSession *createSession(const TQString &sessionType, const JidList &peers); /** * Override method that create a session for a one-to-one session. * It behave like createSession method. * @param sessionType the sesion you want to create. You must pass its XML namespace(ex: http://jabber.org/protocol/sessions/audio) * @param user The JID of the user you want to begin a session with. */ - JingleSession *createSession(const QString &sessionType, const XMPP::Jid &user); + JingleSession *createSession(const TQString &sessionType, const XMPP::Jid &user); void removeSession(JingleSession *session); signals: - void incomingSession(const QString &sessionType, JingleSession *session); + void incomingSession(const TQString &sessionType, JingleSession *session); private slots: - void slotIncomingSession(const QString &sessionType, const QString &initiator); + void slotIncomingSession(const TQString &sessionType, const TQString &initiator); private: class Private; |