summaryrefslogtreecommitdiff
path: root/telepathy-logger/action-chain-internal.h
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-05-21 11:55:30 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-05-26 12:35:22 +0200
commit8355f2665b51e9cce63b53f5164d354a99cae5eb (patch)
treeab6cef647f13523c20f210b6504941672f8651ad /telepathy-logger/action-chain-internal.h
parent8f4a9064de8184fb3785b458d51ebef9abc396df (diff)
downloadtelepathy-logger-8355f2665b51e9cce63b53f5164d354a99cae5eb.tar.gz
rename _tpl_action_chain_new to fit async/finish conventions
Diffstat (limited to 'telepathy-logger/action-chain-internal.h')
-rw-r--r--telepathy-logger/action-chain-internal.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/telepathy-logger/action-chain-internal.h b/telepathy-logger/action-chain-internal.h
index 32a0ff1..f0a75f4 100644
--- a/telepathy-logger/action-chain-internal.h
+++ b/telepathy-logger/action-chain-internal.h
@@ -30,7 +30,8 @@ typedef struct {
GSimpleAsyncResult *simple;
} TplActionChain;
-TplActionChain *_tpl_action_chain_new (GObject *obj, GAsyncReadyCallback cb,
+TplActionChain *_tpl_action_chain_new_async (GObject *obj,
+ GAsyncReadyCallback cb,
gpointer user_data);
void _tpl_action_chain_free (TplActionChain *self);
typedef void (*TplPendingAction) (TplActionChain *ctx, gpointer user_data);
@@ -41,6 +42,6 @@ void _tpl_action_chain_prepend (TplActionChain *self, TplPendingAction func,
void _tpl_action_chain_continue (TplActionChain *self);
void _tpl_action_chain_terminate (TplActionChain *self);
gpointer _tpl_action_chain_get_object (TplActionChain *self);
-gboolean _tpl_action_chain_finish (GAsyncResult *result);
+gboolean _tpl_action_chain_new_finish (GAsyncResult *result);
#endif // __TPL_ACTION_CHAIN_H__