summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCosimo Alfarano <cosimo.alfarano@collabora.co.uk>2010-02-13 23:54:17 +0000
committerDanielle Madeley <danielle.madeley@collabora.co.uk>2010-02-15 12:39:44 +1100
commit83ec0a63f81eb59d39e2dd84569a3d0a3d590799 (patch)
treeb705cba8da87869c5b1db2606d4aef3ea1979941
parent0d453c3de94f513ffafadd5c24b241c942a001cf (diff)
renaming badly named function
-rw-r--r--telepathy-logger/channel-text.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/telepathy-logger/channel-text.c b/telepathy-logger/channel-text.c
index 8684d86cf..20d3c0cd1 100644
--- a/telepathy-logger/channel-text.c
+++ b/telepathy-logger/channel-text.c
@@ -89,7 +89,7 @@ static void get_chatroom_id_cb (TpConnection *proxy,
static void pendingproc_get_my_contact (TplActionChain *ctx);
static void pendingproc_get_remote_contact (TplActionChain *ctx);
static void pendingproc_get_remote_handle_type (TplActionChain *ctx);
-static void keepon (TplLogEntryText *log);
+static void keepon_on_receiving_signal (TplLogEntryText *log);
/* retrieve contacts (me and remote buddy/chatroom) and set TplChannelText
@@ -851,11 +851,11 @@ on_received_signal_with_contact_cb (TpConnection *connection,
remote = contacts[0];
tpl_channel_text_set_remote_contact (tpl_text, remote);
- keepon (log);
+ keepon_on_receiving_signal (log);
}
static void
-keepon (TplLogEntryText *log)
+keepon_on_receiving_signal (TplLogEntryText *log)
{
TplChannelText *tpl_text;
GError *e = NULL;
@@ -961,7 +961,7 @@ on_received_signal_cb (TpChannel *proxy,
TP_CONTACT_FEATURES_LEN, features, on_received_signal_with_contact_cb,
log, g_object_unref, NULL);
else
- keepon (log);
+ keepon_on_receiving_signal (log);
g_object_unref (tpl_contact_receiver);
}