aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2006-09-01 16:17:29 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2006-09-01 16:17:29 +0800
commitd3ffd6b30b7eb1a03e928e0a2aedd65e3fa6cb3c (patch)
tree06292fa795a5416995b198df3f2a0b78078bed42 /calendar
parente6d012c0a2e6d6c29af46ddbb44e5db6bdddaf5d (diff)
downloadgsoc2013-evolution-d3ffd6b30b7eb1a03e928e0a2aedd65e3fa6cb3c.tar
gsoc2013-evolution-d3ffd6b30b7eb1a03e928e0a2aedd65e3fa6cb3c.tar.gz
gsoc2013-evolution-d3ffd6b30b7eb1a03e928e0a2aedd65e3fa6cb3c.tar.bz2
gsoc2013-evolution-d3ffd6b30b7eb1a03e928e0a2aedd65e3fa6cb3c.tar.lz
gsoc2013-evolution-d3ffd6b30b7eb1a03e928e0a2aedd65e3fa6cb3c.tar.xz
gsoc2013-evolution-d3ffd6b30b7eb1a03e928e0a2aedd65e3fa6cb3c.tar.zst
gsoc2013-evolution-d3ffd6b30b7eb1a03e928e0a2aedd65e3fa6cb3c.zip
Fixes #353763
svn path=/trunk/; revision=32711
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog6
-rw-r--r--calendar/gui/dialogs/memo-page.c2
2 files changed, 8 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 1ba6e1e857..22b7d64921 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,9 @@
+2006-09-01 Chenthill Palanisamy <pchenthill@novell.com>
+
+ Fixes #353763
+ * gui/dialogs/memo-page.c: (sensitize_widgets):
+ set sens to TRUE if its not a shared memo.
+
2006-08-30 Srinivasa Ragavan <sragavan@novell.com>
** Fix for bug #344463
diff --git a/calendar/gui/dialogs/memo-page.c b/calendar/gui/dialogs/memo-page.c
index 38df8901d0..487bfcce02 100644
--- a/calendar/gui/dialogs/memo-page.c
+++ b/calendar/gui/dialogs/memo-page.c
@@ -293,6 +293,8 @@ sensitize_widgets (MemoPage *mpage)
if (COMP_EDITOR_PAGE (mpage)->flags & COMP_EDITOR_IS_SHARED)
sens = COMP_EDITOR_PAGE (mpage)->flags & COMP_EDITOR_PAGE_USER_ORG;
+ else
+ sens = TRUE;
sensitize = (!read_only && sens);