aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/select-source-dialog.c
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/gui/dialogs/select-source-dialog.c')
-rw-r--r--calendar/gui/dialogs/select-source-dialog.c4
1 files changed, 4 insertions, 0 deletions
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);