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/DESIGN10
1 files changed, 5 insertions, 5 deletions
diff --git a/kopete/protocols/jabber/jingle/DESIGN b/kopete/protocols/jabber/jingle/DESIGN
index bfd1cd6c..628ecda4 100644
--- a/kopete/protocols/jabber/jingle/DESIGN
+++ b/kopete/protocols/jabber/jingle/DESIGN
@@ -60,11 +60,11 @@ JingleSessionManager manage the JingleSession pointers. Do not delete it in user
* JingleSessionManager(JabberAccount *)
-* public Q_SLOTS:
+* public slots:
* JingleSession *createSession(const TQString &sessionType, const JidList &peers);
* void removeSession(JingleSession *);
-Q_SIGNALS:
+signals:
* void incomingSession(const TQString &sessionType, JingleSession *session);
JingleSession
@@ -89,10 +89,10 @@ Base class for Jingle session. A session is a
// Return Session XML namespace
* virtual TQString sessionType() = 0;
-protected Q_SLOTS:
+protected slots:
void sendStanza(const TQString &stanza) { account()->client->send(stanza);
-Q_SIGNALS:
+signals:
void accepted();
void declined();
void terminated();
@@ -105,7 +105,7 @@ Hold the PhoneSessionClient object.
connect(account()->client(),TQ_SIGNAL(xmlIncoming(const TQString&)),TQ_SLOT(receiveStanza(const TQString&)));
-private Q_SLOTS:
+private slots:
void receiveStanza(const TQString &stanza);
VoiceConversationDialog