summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk>2011-05-31 17:39:00 -0300
committerAndre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk>2011-06-01 16:01:32 -0300
commit3e372dfb8e636daf6bd340e1d79ae35c76caff7a (patch)
treee85a391ed28fa0e99967949871e4d0cb56570a78
parent8c435fa088a9a15885555c7a97065c98f5d10823 (diff)
TextChannel: Improve docs for features.
-rw-r--r--TelepathyQt4/text-channel.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/TelepathyQt4/text-channel.cpp b/TelepathyQt4/text-channel.cpp
index 1fc2c55f..9add9e28 100644
--- a/TelepathyQt4/text-channel.cpp
+++ b/TelepathyQt4/text-channel.cpp
@@ -508,19 +508,25 @@ const Feature TextChannel::FeatureCore = Feature(QLatin1String(Channel::staticMe
/**
* Feature used in order to access the message queue info.
*
- * Se message queue methods' documentation for more details.
+ * See message queue methods' documentation for more details.
+ *
+ * \sa messageQueue(), messageReceived(), pendingMessageRemoved()
*/
const Feature TextChannel::FeatureMessageQueue = Feature(QLatin1String(TextChannel::staticMetaObject.className()), 0);
/**
* Feature used in order to access message capabilities info.
*
- * Se message capabilities methods' documentation for more details.
+ * See message capabilities methods' documentation for more details.
+ *
+ * \sa supportedContentTypes(), messagePartSupport(), deliveryReportingSupport()
*/
const Feature TextChannel::FeatureMessageCapabilities = Feature(QLatin1String(TextChannel::staticMetaObject.className()), 1);
/**
* Feature used in order to receive notification when a message is sent.
+ *
+ * \sa messageSent()
*/
const Feature TextChannel::FeatureMessageSentSignal = Feature(QLatin1String(TextChannel::staticMetaObject.className()), 2);
@@ -529,6 +535,8 @@ const Feature TextChannel::FeatureMessageSentSignal = Feature(QLatin1String(Text
*
* The chatStateChanged() signal will be emitted when a remote contact chat
* state changes.
+ *
+ * \sa chatState(), chatStateChanged()
*/
const Feature TextChannel::FeatureChatState = Feature(QLatin1String(TextChannel::staticMetaObject.className()), 3);