diff options
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/dialogs/select-source-dialog.c | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 01553e23de..f7a405f4f0 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2007-05-14 Srinivasa Ragavan <sragavan@novell.com> + + ** Fix for bug #330098 from Naresh + + * gui/dialogs/select-source-dialog.c: (select_source_dialog): + 2007-05-12 Matthew Barnes <mbarnes@redhat.com> ** Fixes part of bug #337616 diff --git a/calendar/gui/dialogs/select-source-dialog.c b/calendar/gui/dialogs/select-source-dialog.c index 408cb73b29..80f7d8be81 100644 --- a/calendar/gui/dialogs/select-source-dialog.c +++ b/calendar/gui/dialogs/select-source-dialog.c @@ -47,6 +47,8 @@ select_source_dialog (GtkWindow *parent, ECalSourceType obj_type) gconf_key = "/apps/evolution/calendar/sources"; else if (obj_type == E_CAL_SOURCE_TYPE_TODO) gconf_key = "/apps/evolution/tasks/sources"; + else if(obj_type == E_CAL_SOURCE_TYPE_JOURNAL) + gconf_key = "/apps/evolution/memos/sources"; else return NULL; @@ -60,6 +62,8 @@ select_source_dialog (GtkWindow *parent, ECalSourceType obj_type) icon_list = e_icon_factory_get_icon_list ("stock_calendar"); else if (obj_type == E_CAL_SOURCE_TYPE_TODO) icon_list = e_icon_factory_get_icon_list ("stock_todo"); + else if (obj_type == E_CAL_SOURCE_TYPE_JOURNAL) + icon_list = e_icon_factory_get_icon_list ("stock_journal"); if (icon_list) { gtk_window_set_icon_list (GTK_WINDOW (dialog), icon_list); |