diff options
author | Michele Calgaro <[email protected]> | 2023-09-25 12:27:45 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-25 17:55:33 +0900 |
commit | 509d078e9a8ca1afa64356f582cb3e109a140857 (patch) | |
tree | 574fda03cc70c5fe467ddd806b7be6fb7823afe1 /kopete/protocols/jabber | |
parent | 857e7f7774bb5492a4e9862bea499b2b472f1bf1 (diff) | |
download | tdenetwork-509d078e9a8ca1afa64356f582cb3e109a140857.tar.gz tdenetwork-509d078e9a8ca1afa64356f582cb3e109a140857.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* versionr14.1.1
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 9cb8c6c00f79d91afabd3d302e60e6ab6c251c41)
Diffstat (limited to 'kopete/protocols/jabber')
-rw-r--r-- | kopete/protocols/jabber/jingle/DESIGN | 14 |
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 ----------------------- |