summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDanielle Madeley <danielle.madeley@collabora.co.uk>2010-03-18 18:08:09 +1100
committerDanielle Madeley <danielle.madeley@collabora.co.uk>2010-03-19 14:06:13 +1100
commita2787e80d020f2186ae50fe677a6bef6e5404096 (patch)
tree9a1d45b7e1ab28dba462654cc47469c3a1363c75 /tests
parent35b3d2c0bdf60d53268f420389aade1740ca4406 (diff)
downloadtelepathy-logger-a2787e80d020f2186ae50fe677a6bef6e5404096.tar.gz
tpl_actionchain_* -> tpl_action_chain_* -- make methods consistent with type
Diffstat (limited to 'tests')
-rw-r--r--tests/tpl-channel-test.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/tpl-channel-test.c b/tests/tpl-channel-test.c
index e87c154..818f9f6 100644
--- a/tests/tpl-channel-test.c
+++ b/tests/tpl-channel-test.c
@@ -133,10 +133,10 @@ tpl_channel_test_call_when_ready (TplChannelTest *self,
* If for any reason, the order is changed, it's need to check what objects
* are unreferenced by g_object_unref: after the order change, it might
* happend that an object still has to be created after the change */
- actions = tpl_actionchain_new (G_OBJECT (self), cb, user_data);
- tpl_actionchain_append (actions, pendingproc_prepare_tpl_channel, NULL);
+ actions = tpl_action_chain_new (G_OBJECT (self), cb, user_data);
+ tpl_action_chain_append (actions, pendingproc_prepare_tpl_channel, NULL);
/* start the queue consuming */
- tpl_actionchain_continue (actions);
+ tpl_action_chain_continue (actions);
}
@@ -144,7 +144,7 @@ static void
pendingproc_prepare_tpl_channel (TplActionChain *ctx,
gpointer user_data)
{
- TplChannel *tpl_chan = TPL_CHANNEL (tpl_actionchain_get_object (ctx));
+ TplChannel *tpl_chan = TPL_CHANNEL (tpl_action_chain_get_object (ctx));
g_debug ("prepare tpl");
TPL_CHANNEL_GET_CLASS (tpl_chan)->call_when_ready_protected (tpl_chan,
@@ -160,7 +160,7 @@ got_tpl_chan_ready_cb (GObject *obj,
TplActionChain *ctx = user_data;
g_debug ("PREPARE");
- if (tpl_actionchain_finish (result) == TRUE)
- tpl_actionchain_continue (ctx);
+ if (tpl_action_chain_finish (result) == TRUE)
+ tpl_action_chain_continue (ctx);
return;
}