From a9f92b3b98595c2835a8af01fe9940e4feea7db3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C3=ABl=20Carr=C3=A9?= <rafael.carre@savoirfairelinux.com> Date: Fri, 8 Jul 2011 11:56:56 -0400 Subject: [PATCH] process_conference_participant_from_serialized() : remove unused function --- sflphone-client-gnome/src/conference_obj.c | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/sflphone-client-gnome/src/conference_obj.c b/sflphone-client-gnome/src/conference_obj.c index d9a9ce4658..ee8c9426b9 100644 --- a/sflphone-client-gnome/src/conference_obj.c +++ b/sflphone-client-gnome/src/conference_obj.c @@ -38,8 +38,6 @@ static void set_conference_timestamp (time_t *); static void conference_add_participant_number(const gchar *, conference_obj_t *); -static void process_conference_participant_from_serialized(gchar *, conference_obj_t *); - static void set_conference_timestamp (time_t *timestamp) { time_t tmp; @@ -337,23 +335,3 @@ void create_conference_history_entry_from_serialized(gchar *entry, conference_ob (*conf)->_recordfile = g_strdup(recordfile); } - -static void process_conference_participant_from_serialized(gchar *participant, conference_obj_t *conf) -{ - gchar **ptr = NULL; - gchar *delim = ";"; - gint tok = 0; - - - DEBUG("Conference: Process participant from serialized form"); - - ptr = g_strsplit(participant, delim, 3); - while(ptr != NULL && (tok < 2)) { - gchar *call_id = NULL; - - conference_add_participant(call_id, conf); - - tok++; - ptr++; - } -} -- GitLab