diff options
author | JP Rosevear <jpr@helixcode.com> | 2000-08-25 12:05:42 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2000-08-25 12:05:42 +0800 |
commit | 6252ffa2f5708c65bba754f74cda708558d733a7 (patch) | |
tree | 63e984687c95ab8fa08e2715600d487f68370e95 /calendar/gui/gncal-todo.c | |
parent | 38387de2ea45b04b07414e0c8d6c8f03b39a5461 (diff) | |
download | gsoc2013-evolution-6252ffa2f5708c65bba754f74cda708558d733a7.tar gsoc2013-evolution-6252ffa2f5708c65bba754f74cda708558d733a7.tar.gz gsoc2013-evolution-6252ffa2f5708c65bba754f74cda708558d733a7.tar.bz2 gsoc2013-evolution-6252ffa2f5708c65bba754f74cda708558d733a7.tar.lz gsoc2013-evolution-6252ffa2f5708c65bba754f74cda708558d733a7.tar.xz gsoc2013-evolution-6252ffa2f5708c65bba754f74cda708558d733a7.tar.zst gsoc2013-evolution-6252ffa2f5708c65bba754f74cda708558d733a7.zip |
Properly append to list
2000-08-24 JP Rosevear <jpr@helixcode.com>
* gui/gncal-todo.c (ok_button): Properly append to list
* gui/event-editor.c (dialog_to_comp_object): ditto
* gui/e-day-view.c (e_day_view_on_new_appointment): The base
times are not UTC
* gui/e-week-view.c (e_week_view_on_new_appointment): ditto
svn path=/trunk/; revision=5031
Diffstat (limited to 'calendar/gui/gncal-todo.c')
-rw-r--r-- | calendar/gui/gncal-todo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/gncal-todo.c b/calendar/gui/gncal-todo.c index 899c953723..f81cc24740 100644 --- a/calendar/gui/gncal-todo.c +++ b/calendar/gui/gncal-todo.c @@ -101,7 +101,7 @@ ok_button (GtkWidget *widget, GnomeDialog *dialog) comment = GTK_TEXT(gtk_object_get_data (GTK_OBJECT(dialog), "comment")); t = gtk_editable_get_chars (entry, 0, -1); text->value = t; - g_slist_append (l, text); + l = g_slist_append (l, text); cal_component_set_comment_list (comp, l); cal_component_free_text_list (l); |