summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/jabber/jingle/jinglesessionmanager.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/jabber/jingle/jinglesessionmanager.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/jabber/jingle/jinglesessionmanager.h')
-rw-r--r--kopete/protocols/jabber/jingle/jinglesessionmanager.h14
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;