summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/jabber/jingle/DESIGN
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/jabber/jingle/DESIGN')
-rw-r--r--kopete/protocols/jabber/jingle/DESIGN14
1 files changed, 7 insertions, 7 deletions
diff --git a/kopete/protocols/jabber/jingle/DESIGN b/kopete/protocols/jabber/jingle/DESIGN
index 4698ca5d..3a3a9636 100644
--- a/kopete/protocols/jabber/jingle/DESIGN
+++ b/kopete/protocols/jabber/jingle/DESIGN
@@ -5,7 +5,7 @@ In JabberAccount:
-Account is connected:
* Init the JingleSessionManager (accessible via account()->jingleSessionManager())
* Add voice extension to client features.
-* Connect to incomingSession(const QString &sessionType, JingleSession *session) signal in JabberAccount.
+* Connect to incomingSession(const TQString &sessionType, JingleSession *session) signal in JabberAccount.
-On incoming session
* Create and show VoiceConversationDialog.
@@ -61,11 +61,11 @@ JingleSessionManager manage the JingleSession pointers. Do not delete it in user
* JingleSessionManager(JabberAccount *)
* public Q_SLOTS:
-* JingleSession *createSession(const QString &sessionType, const JidList &peers);
+* JingleSession *createSession(const TQString &sessionType, const JidList &peers);
* void removeSession(JingleSession *);
Q_SIGNALS:
-* void incomingSession(const QString &sessionType, JingleSession *session);
+* void incomingSession(const TQString &sessionType, JingleSession *session);
JingleSession
-------------
@@ -87,10 +87,10 @@ Base class for Jingle session. A session is a
* virtual void terminate() = 0;
// Return Session XML namespace
-* virtual QString sessionType() = 0;
+* virtual TQString sessionType() = 0;
protected Q_SLOTS:
- void sendStanza(const QString &stanza) { account()->client->send(stanza);
+ void sendStanza(const TQString &stanza) { account()->client->send(stanza);
Q_SIGNALS:
void accepted();
@@ -102,11 +102,11 @@ JingleVoiceSession : public JingleSession
Define a VoIP voice session between two peers(for the moment).
Hold the PhoneSessionClient object.
-connect(account()->client(),SIGNAL(xmlIncoming(const QString&)),SLOT(receiveStanza(const QString&)));
+connect(account()->client(),SIGNAL(xmlIncoming(const TQString&)),SLOT(receiveStanza(const TQString&)));
private Q_SLOTS:
- void receiveStanza(const QString &stanza);
+ void receiveStanza(const TQString &stanza);
VoiceConversationDialog
-----------------------