aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/select-source-dialog.c
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@src.gnome.org>2007-05-14 12:01:46 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2007-05-14 12:01:46 +0800
commit487e6270fccfe734cb8531c128b20db780725d20 (patch)
tree9dcc28dfb6883e1236c1211edc261a354d3bd2b2 /calendar/gui/dialogs/select-source-dialog.c
parent5253b178945259a6026d9a006a9de25b77a02e23 (diff)
downloadgsoc2013-evolution-487e6270fccfe734cb8531c128b20db780725d20.tar
gsoc2013-evolution-487e6270fccfe734cb8531c128b20db780725d20.tar.gz
gsoc2013-evolution-487e6270fccfe734cb8531c128b20db780725d20.tar.bz2
gsoc2013-evolution-487e6270fccfe734cb8531c128b20db780725d20.tar.lz
gsoc2013-evolution-487e6270fccfe734cb8531c128b20db780725d20.tar.xz
gsoc2013-evolution-487e6270fccfe734cb8531c128b20db780725d20.tar.zst
gsoc2013-evolution-487e6270fccfe734cb8531c128b20db780725d20.zip
Fix for #330098
svn path=/trunk/; revision=33529
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);