diff options
author | Travis Reitter <travis.reitter@collabora.co.uk> | 2010-09-16 10:35:33 -0700 |
---|---|---|
committer | Travis Reitter <travis.reitter@collabora.co.uk> | 2010-09-17 14:41:49 -0700 |
commit | 790d641a3fbc986a5b706b8234899ba49c61d71b (patch) | |
tree | 439aa3454774d6549d574865a9b2a9927ad89ae3 | |
parent | 06f48178dbaba3ec3d537ba5f9b338e06f35f268 (diff) |
Fix the GIR annotation for connection_open_contact_list_channel_finish
-rw-r--r-- | backends/telepathy/lib/tp-lowlevel.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/backends/telepathy/lib/tp-lowlevel.c b/backends/telepathy/lib/tp-lowlevel.c index 78e4349..f2a5692 100644 --- a/backends/telepathy/lib/tp-lowlevel.c +++ b/backends/telepathy/lib/tp-lowlevel.c @@ -98,9 +98,19 @@ folks_tp_lowlevel_connection_open_contact_list_channel_async ( /* XXX: ideally, we'd either make this static or hide it in the .metadata file, * but neither seems to be supported (without breaking the binding to the async * function) */ +/** + * folks_tp_lowlevel_connection_open_contact_list_channel_finish: + * @lowlevel: a #FolksTpLowlevel + * @result: the async result + * @error: a #GError, or %NULL + * + * Finish opening a Telepathy Contact List Channel. + * + * Returns: (transfer none): the ensured-valid #TpChannel + */ TpChannel * folks_tp_lowlevel_connection_open_contact_list_channel_finish ( - FolksTpLowlevel *tp_lowlevel, + FolksTpLowlevel *lowlevel, GAsyncResult *result, GError **error) { |