diff options
Diffstat (limited to 'composer')
-rw-r--r-- | composer/ChangeLog | 5 | ||||
-rw-r--r-- | composer/e-msg-composer-select-file.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index 557872f3b8..ddd7bf10dc 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,8 @@ +2005-02-15 Jeffrey Stedfast <fejj@novell.com> + + * e-msg-composer-select-file.c (select_attach_response): Fix + previous patch for the !USE_GTKFILECHOOSER case. + 2005-02-16 Harry Lu <harry.lu@sun.com> Add a11y name for attachment button and bars diff --git a/composer/e-msg-composer-select-file.c b/composer/e-msg-composer-select-file.c index 6fdf711081..e93c39dcd2 100644 --- a/composer/e-msg-composer-select-file.c +++ b/composer/e-msg-composer-select-file.c @@ -202,7 +202,7 @@ select_attach_response(GtkWidget *selector, guint response, struct _EMsgComposer names = NULL; if ((files = gtk_file_selection_get_selections (GTK_FILE_SELECTION (selector)))) { for (i = 0; files[i]; i++) - g_slist_prepend(names, files[i]); + names = g_slist_prepend(names, files[i]); g_free (files); names = g_slist_reverse(names); |