diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-05-19 17:16:22 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-06-17 20:53:23 +0800 |
commit | 8c8046a95a4db39a507aceb78e3c23f959eb7745 (patch) | |
tree | 08de4fb16840ffdf41ea8fecc6f1791e8fadbaa2 /libempathy/empathy-tp-chat.c | |
parent | 14d38669faa5ed366832dd8f8fc9da7813f8a4af (diff) | |
download | gsoc2013-empathy-8c8046a95a4db39a507aceb78e3c23f959eb7745.tar gsoc2013-empathy-8c8046a95a4db39a507aceb78e3c23f959eb7745.tar.gz gsoc2013-empathy-8c8046a95a4db39a507aceb78e3c23f959eb7745.tar.bz2 gsoc2013-empathy-8c8046a95a4db39a507aceb78e3c23f959eb7745.tar.lz gsoc2013-empathy-8c8046a95a4db39a507aceb78e3c23f959eb7745.tar.xz gsoc2013-empathy-8c8046a95a4db39a507aceb78e3c23f959eb7745.tar.zst gsoc2013-empathy-8c8046a95a4db39a507aceb78e3c23f959eb7745.zip |
add inviter arg to empathy_tp_chat_is_invited
Diffstat (limited to 'libempathy/empathy-tp-chat.c')
-rw-r--r-- | libempathy/empathy-tp-chat.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libempathy/empathy-tp-chat.c b/libempathy/empathy-tp-chat.c index 858cfae27..a9a63f548 100644 --- a/libempathy/empathy-tp-chat.c +++ b/libempathy/empathy-tp-chat.c @@ -1868,7 +1868,8 @@ empathy_tp_chat_join (EmpathyTpChat *self) } gboolean -empathy_tp_chat_is_invited (EmpathyTpChat *self) +empathy_tp_chat_is_invited (EmpathyTpChat *self, + TpHandle *inviter) { EmpathyTpChatPriv *priv = GET_PRIV (self); TpHandle self_handle; @@ -1881,5 +1882,5 @@ empathy_tp_chat_is_invited (EmpathyTpChat *self) return FALSE; return tp_channel_group_get_local_pending_info (priv->channel, self_handle, - NULL, NULL, NULL); + inviter, NULL, NULL); } |