From 9cb8c6c00f79d91afabd3d302e60e6ab6c251c41 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 25 Sep 2023 12:27:45 +0900 Subject: Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version Signed-off-by: Michele Calgaro --- kopete/protocols/jabber/jingle/DESIGN | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'kopete/protocols/jabber') 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 ----------------------- -- cgit v1.2.1