diff options
author | JP Rosevear <jpr@ximian.com> | 2004-01-21 14:15:29 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-01-21 14:15:29 +0800 |
commit | d2fdb0f30c4567f389ce6509c7f0410d443a64f6 (patch) | |
tree | e027c9de1099d804c0dd8603353ba4762218def0 | |
parent | ce34605741e3522a875ba2449ed752a9eb7df601 (diff) | |
download | gsoc2013-evolution-d2fdb0f30c4567f389ce6509c7f0410d443a64f6.tar.gz gsoc2013-evolution-d2fdb0f30c4567f389ce6509c7f0410d443a64f6.tar.zst gsoc2013-evolution-d2fdb0f30c4567f389ce6509c7f0410d443a64f6.zip |
just use the convienence function for the default gconf client (fixes
2004-01-21 JP Rosevear <jpr@ximian.com>
* gui/dialogs/calendar-setup.c (calendar_setup_new_calendar): just
use the convienence function for the default gconf client (fixes
leak)
(calendar_setup_new_task_list): ditto
(new_task_list_finish): we don't support task uri's
svn path=/trunk/; revision=24346
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/dialogs/calendar-setup.c | 3 |
2 files changed, 5 insertions, 4 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 1a19001517..4d05cf4186 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,9 +1,11 @@ 2004-01-21 JP Rosevear <jpr@ximian.com> * gui/dialogs/calendar-setup.c (calendar_setup_new_calendar): just - use the convienence function for the default gconf client (fixes leak) + use the convienence function for the default gconf client (fixes + leak) (calendar_setup_new_task_list): ditto - + (new_task_list_finish): we don't support task uri's + 2004-01-21 JP Rosevear <jpr@ximian.com> * gui/dialogs/calendar-setup.c (source_to_dialog): only block diff --git a/calendar/gui/dialogs/calendar-setup.c b/calendar/gui/dialogs/calendar-setup.c index cf48fcd32c..91c821b34c 100644 --- a/calendar/gui/dialogs/calendar-setup.c +++ b/calendar/gui/dialogs/calendar-setup.c @@ -643,8 +643,7 @@ new_task_list_finish (SourceDialog *source_dialog) { source_dialog->source = create_new_source_with_group (GTK_WINDOW (source_dialog->window), source_dialog->source_group, - gtk_entry_get_text (GTK_ENTRY (source_dialog->name_entry)), - gtk_entry_get_text (GTK_ENTRY (source_dialog->uri_entry))); + gtk_entry_get_text (GTK_ENTRY (source_dialog->name_entry)), NULL); dialog_to_source (source_dialog); gtk_widget_destroy (source_dialog->window); |