From 5d4c62d7b80050b9c51dc7df77c00113e53bb442 Mon Sep 17 00:00:00 2001 From: Niklas Wenzel Date: Thu, 30 Apr 2015 09:45:39 +0200 Subject: Remove GArray and fix code style --- src/im-application-list.c | 31 +++++++++---------------------- 1 file changed, 9 insertions(+), 22 deletions(-) (limited to 'src') diff --git a/src/im-application-list.c b/src/im-application-list.c index 82025cc..272142a 100644 --- a/src/im-application-list.c +++ b/src/im-application-list.c @@ -522,30 +522,17 @@ im_application_list_remove_all (GSimpleAction *action, if (app->proxy != NULL) /* If it is remote, we tell the app we've cleared */ { - /* Unescape action names */ - GArray *unescaped_source_actions_array = g_array_new(TRUE, FALSE, sizeof(gchar*)); - for (it = source_actions; *it; it++) - { - gchar *action_name; - - action_name = unescape_action_name (*it); - - g_array_append_val(unescaped_source_actions_array, action_name); - } - - gchar **unescaped_source_actions = (gchar**) g_array_free(unescaped_source_actions_array, FALSE); + gchar **unescaped_source_actions; + gchar **unescaped_message_actions; - GArray *unescaped_message_actions_array = g_array_new(TRUE, FALSE, sizeof(gchar*)); - for (it = message_actions; *it; it++) - { - gchar *action_name; - - action_name = unescape_action_name (*it); - - g_array_append_val(unescaped_message_actions_array, action_name); - } + /* Unescape action names */ + unescaped_source_actions = g_new0 (gchar *, g_strv_length (source_actions) + 1); + for (i = 0; source_actions[i]; i++) + unescaped_source_actions[i] = unescape_action_name (source_actions[i]); - gchar **unescaped_message_actions = (gchar**) g_array_free(unescaped_message_actions_array, FALSE); + unescaped_message_actions = g_new0 (gchar *, g_strv_length (message_actions) + 1); + for (i = 0; message_actions[i]; i++) + unescaped_message_actions[i] = unescape_action_name (message_actions[i]); indicator_messages_application_call_dismiss (app->proxy, (const gchar * const *) unescaped_source_actions, -- cgit v1.2.3