aboutsummaryrefslogtreecommitdiffstats
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
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
-rw-r--r--calendar/ChangeLog6
-rw-r--r--calendar/gui/dialogs/select-source-dialog.c4
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);