aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2007-07-29 22:38:16 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2007-07-29 22:38:16 +0800
commita30d50adb6b763fbb34f692c7f0d455363af8227 (patch)
treeee96e9bddd6264a440852edf4080417078c4b07b
parent1590d056192bab7abc665dcc54785b77ea3b4ade (diff)
downloadgsoc2013-evolution-a30d50adb6b763fbb34f692c7f0d455363af8227.tar
gsoc2013-evolution-a30d50adb6b763fbb34f692c7f0d455363af8227.tar.gz
gsoc2013-evolution-a30d50adb6b763fbb34f692c7f0d455363af8227.tar.bz2
gsoc2013-evolution-a30d50adb6b763fbb34f692c7f0d455363af8227.tar.lz
gsoc2013-evolution-a30d50adb6b763fbb34f692c7f0d455363af8227.tar.xz
gsoc2013-evolution-a30d50adb6b763fbb34f692c7f0d455363af8227.tar.zst
gsoc2013-evolution-a30d50adb6b763fbb34f692c7f0d455363af8227.zip
Fixes #326388
svn path=/trunk/; revision=33884
-rw-r--r--calendar/ChangeLog7
-rw-r--r--calendar/gui/calendar-component.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index a348641588..4bf31bd4f2 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,10 @@
+2007-07-18 Milan Crha <mcrha@redhat.com>
+
+ ** Fix for bug #326388
+
+ * gui/calendar-component.c: (ensure_sources):
+ Always set 'delete=no' property for birthdays_source.
+
2007-07-29 Srinivasa Ragavan <sragavan@novell.com>
** Fix for bug #444433 from Lucky
diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c
index 38bd178156..ce1debd7fb 100644
--- a/calendar/gui/calendar-component.c
+++ b/calendar/gui/calendar-component.c
@@ -289,8 +289,8 @@ ensure_sources (CalendarComponent *component)
if (!birthdays_source) {
birthdays_source = e_source_new (_("Birthdays & Anniversaries"), "/");
e_source_group_add_source (contacts, birthdays_source, -1);
- e_source_set_property(birthdays_source, "delete", "no");
}
+ e_source_set_property(birthdays_source, "delete", "no");
if (!weather) {
/* Create the weather group */