diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-04-26 15:34:42 +0200 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-04-29 09:11:44 +0200 |
commit | 8d166a1673cea674b88ce282b0f81461ebdace28 (patch) | |
tree | b68905c89320e10863f801070bd24a6115cf6896 /telepathy-glib/observe-channels-context.c | |
parent | 9304910b7de00d4b6e24ccf140e12f5c71657721 (diff) | |
download | telepathy-glib-8d166a1673cea674b88ce282b0f81461ebdace28.tar.gz |
Make tp_observe_channels_context_prepare_{async,finish} internals
They are not meant to be used outside of base-client.
Diffstat (limited to 'telepathy-glib/observe-channels-context.c')
-rw-r--r-- | telepathy-glib/observe-channels-context.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/telepathy-glib/observe-channels-context.c b/telepathy-glib/observe-channels-context.c index 8a479faab..8c8568884 100644 --- a/telepathy-glib/observe-channels-context.c +++ b/telepathy-glib/observe-channels-context.c @@ -480,7 +480,7 @@ context_prepare (TpObserveChannelsContext *self) } void -tp_observe_channels_context_prepare_async (TpObserveChannelsContext *self, +_tp_observe_channels_context_prepare_async (TpObserveChannelsContext *self, GAsyncReadyCallback callback, gpointer user_data) { @@ -488,7 +488,7 @@ tp_observe_channels_context_prepare_async (TpObserveChannelsContext *self, g_return_if_fail (self->priv->result == NULL); self->priv->result = g_simple_async_result_new (G_OBJECT (self), - callback, user_data, tp_observe_channels_context_prepare_async); + callback, user_data, _tp_observe_channels_context_prepare_async); if (context_is_prepared (self)) { @@ -502,7 +502,7 @@ tp_observe_channels_context_prepare_async (TpObserveChannelsContext *self, } gboolean -tp_observe_channels_context_prepare_finish ( +_tp_observe_channels_context_prepare_finish ( TpObserveChannelsContext *self, GAsyncResult *result, GError **error) @@ -518,7 +518,7 @@ tp_observe_channels_context_prepare_finish ( return FALSE; g_return_val_if_fail (g_simple_async_result_is_valid (result, - G_OBJECT (self), tp_observe_channels_context_prepare_async), FALSE); + G_OBJECT (self), _tp_observe_channels_context_prepare_async), FALSE); return TRUE; } |