summaryrefslogtreecommitdiff
path: root/telepathy-glib/text-mixin.c
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2008-04-11 13:31:41 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2008-04-11 13:31:41 +0000
commitce991222ad71d13593c94b263710bf56ad70bd08 (patch)
treebb4b76805bb7aa03688fe2342758c0b92a952017 /telepathy-glib/text-mixin.c
parent5038c135e99e06440900a3b10bf2ae5da6902456 (diff)
downloadtelepathy-glib-ce991222ad71d13593c94b263710bf56ad70bd08.tar.gz
Fix wrong cast in initializer
20080411133141-53eee-5359ccf18007cfaeaa577979feef23865a52f94b.gz
Diffstat (limited to 'telepathy-glib/text-mixin.c')
-rw-r--r--telepathy-glib/text-mixin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/telepathy-glib/text-mixin.c b/telepathy-glib/text-mixin.c
index 193faf6a7..c45be5106 100644
--- a/telepathy-glib/text-mixin.c
+++ b/telepathy-glib/text-mixin.c
@@ -552,7 +552,7 @@ static void
tp_text_mixin_get_message_types_async (TpSvcChannelTypeText *iface,
DBusGMethodInvocation *context)
{
- TpTextMixin *mixin = TP_TEXT_MIXIN (obj);
+ TpTextMixin *mixin = TP_TEXT_MIXIN (iface);
tp_svc_channel_type_text_return_from_get_message_types (context,
mixin->priv->msg_types);