summaryrefslogtreecommitdiff
path: root/telepathy-glib/automatic-proxy-factory.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-05-24 11:09:22 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-05-30 09:45:32 +0200
commit34c993a9f017af003eed4560336628b6b0b84669 (patch)
treeb02f7c7626aa1ebe4d16821448f14f16caca560b /telepathy-glib/automatic-proxy-factory.c
parent26d3b35a857e7a5d6451075f61be68a9c752d466 (diff)
downloadtelepathy-glib-34c993a9f017af003eed4560336628b6b0b84669.tar.gz
automatic-proxy-factory: prepare TP_TEXT_CHANNEL_FEATURE_SMS
Diffstat (limited to 'telepathy-glib/automatic-proxy-factory.c')
-rw-r--r--telepathy-glib/automatic-proxy-factory.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/telepathy-glib/automatic-proxy-factory.c b/telepathy-glib/automatic-proxy-factory.c
index ea1240936..56b428d09 100644
--- a/telepathy-glib/automatic-proxy-factory.c
+++ b/telepathy-glib/automatic-proxy-factory.c
@@ -57,8 +57,8 @@
* type of channels.</para>
* </listitem>
* <listitem>
- * <para>%TP_TEXT_CHANNEL_FEATURE_INCOMING_MESSAGES for
- * #TpTextChannel</para>
+ * <para>%TP_TEXT_CHANNEL_FEATURE_INCOMING_MESSAGES and
+ * TP_TEXT_CHANNEL_FEATURE_SMS for #TpTextChannel</para>
* </listitem>
* </itemizedlist>
*
@@ -189,6 +189,9 @@ tp_automatic_proxy_factory_dup_channel_features_impl (TpChannel *channel)
{
feature = TP_TEXT_CHANNEL_FEATURE_INCOMING_MESSAGES;
g_array_append_val (features, feature);
+
+ feature = TP_TEXT_CHANNEL_FEATURE_SMS;
+ g_array_append_val (features, feature);
}
return features;