diff options
author | Gabriel Millaire <millaire.gabriel@gmail.com> | 2009-05-17 04:42:37 +0800 |
---|---|---|
committer | Gabriel Millaire <millaire.gabriel@gmail.com> | 2009-05-22 23:15:43 +0800 |
commit | 6405eb55ea31ac039c39a780fbeb6848d05934bf (patch) | |
tree | 3d59fee22934e0e44c9356397180b0826db5425a /libempathy | |
parent | 043a161ccdfe386057b51da8c87142ec6e1d131b (diff) | |
download | gsoc2013-empathy-6405eb55ea31ac039c39a780fbeb6848d05934bf.tar gsoc2013-empathy-6405eb55ea31ac039c39a780fbeb6848d05934bf.tar.gz gsoc2013-empathy-6405eb55ea31ac039c39a780fbeb6848d05934bf.tar.bz2 gsoc2013-empathy-6405eb55ea31ac039c39a780fbeb6848d05934bf.tar.lz gsoc2013-empathy-6405eb55ea31ac039c39a780fbeb6848d05934bf.tar.xz gsoc2013-empathy-6405eb55ea31ac039c39a780fbeb6848d05934bf.tar.zst gsoc2013-empathy-6405eb55ea31ac039c39a780fbeb6848d05934bf.zip |
Fixed call with list
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-tp-roomlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-tp-roomlist.c b/libempathy/empathy-tp-roomlist.c index 5d3eded4d..1b2e393d1 100644 --- a/libempathy/empathy-tp-roomlist.c +++ b/libempathy/empathy-tp-roomlist.c @@ -297,7 +297,7 @@ channel_ready_cb (TpChannel *channel, if (priv->start_requested == TRUE) { tp_cli_channel_type_room_list_call_list_rooms (priv->channel, -1, - call_list_rooms_cb, NULL, NULL, NULL); + call_list_rooms_cb, list, NULL, NULL); priv->start_requested = FALSE; } } |