diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/about.c | 1 | ||||
-rw-r--r-- | src/fileselection.c | 5 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/about.c b/src/about.c index afcdec13..a849f864 100644 --- a/src/about.c +++ b/src/about.c @@ -57,6 +57,7 @@ static const gchar *author_credits[] = { "Peter Astrand <astrand lysator liu se>", "Jonathan Blandford <jrb redhat com>", "Paul Bolle <pebolle tiscali nl>", + "Paolo Borelli <pborelli katamail com>", "Leonardo Boshell <p kapcoweb com>", "Ross Burton <ross burtonini com>", "Damien Carbery <damien carbery sun com>", diff --git a/src/fileselection.c b/src/fileselection.c index 4d50fb76..69304374 100644 --- a/src/fileselection.c +++ b/src/fileselection.c @@ -85,7 +85,6 @@ zenity_fileselection_dialog_response (GtkWidget *widget, int response, gpointer { ZenityFileData *file_data = data; GSList *selections, *iter; - gchar *separator = g_strdup(file_data->separator); int i; switch (response) { @@ -96,12 +95,10 @@ zenity_fileselection_dialog_response (GtkWidget *widget, int response, gpointer g_print ("%s", g_filename_to_utf8 ((gchar*)iter->data, -1, NULL, NULL, NULL)); g_free (iter->data); if (iter->next != NULL) - g_print ("%s",separator); + g_print ("%s",file_data->separator); } g_print("\n"); g_slist_free(selections); - g_free(separator); - break; case GTK_RESPONSE_CANCEL: |