aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@src.gnome.org>2006-01-23 16:09:45 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2006-01-23 16:09:45 +0800
commit977171ff51243dd2df800f9f1977902a704665d9 (patch)
treed5d3b1f39338c10d5e08d0c2768493189dc27e9d /calendar
parent305832a728c3a14a1bd0a9d2008209b41cba0953 (diff)
downloadgsoc2013-evolution-977171ff51243dd2df800f9f1977902a704665d9.tar
gsoc2013-evolution-977171ff51243dd2df800f9f1977902a704665d9.tar.gz
gsoc2013-evolution-977171ff51243dd2df800f9f1977902a704665d9.tar.bz2
gsoc2013-evolution-977171ff51243dd2df800f9f1977902a704665d9.tar.lz
gsoc2013-evolution-977171ff51243dd2df800f9f1977902a704665d9.tar.xz
gsoc2013-evolution-977171ff51243dd2df800f9f1977902a704665d9.tar.zst
gsoc2013-evolution-977171ff51243dd2df800f9f1977902a704665d9.zip
committing patch from pavithran
svn path=/trunk/; revision=31271
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog8
-rw-r--r--calendar/gui/dialogs/event-editor.c1
-rw-r--r--calendar/gui/dialogs/task-editor.c1
3 files changed, 10 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index f8be8aee01..6b9d8967c6 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,11 @@
+2006-01-23 Pavithran <pavithran@gmx.de>
+
+ ** Fixes bug #327713 , #327730
+
+ * gui/dialogs/event-editor.c: (event_editor_construct):
+ * gui/dialogs/task-editor.c: (task_editor_construct):
+ Removes extra seperator.
+
2006-01-23 Irene Huang <Irene.Huang@sun.com>
Fixes #327958
diff --git a/calendar/gui/dialogs/event-editor.c b/calendar/gui/dialogs/event-editor.c
index 75b2b56bac..5d574ef801 100644
--- a/calendar/gui/dialogs/event-editor.c
+++ b/calendar/gui/dialogs/event-editor.c
@@ -589,6 +589,7 @@ event_editor_construct (EventEditor *ee, ECal *client)
bonobo_ui_component_set_prop (editor->uic, "/commands/ViewRSVP", "hidden", "1", NULL);
bonobo_ui_component_set_prop (editor->uic, "/commands/ViewType", "hidden", "1", NULL);
bonobo_ui_component_set_prop (editor->uic, "/commands/ViewStatus", "hidden", "1", NULL);
+ bonobo_ui_component_set_prop (editor->uic, "/menu/View/AttendeeOptions/timezonesep", "hidden", "1", NULL);
}
comp_editor_set_e_cal (COMP_EDITOR (ee), client);
diff --git a/calendar/gui/dialogs/task-editor.c b/calendar/gui/dialogs/task-editor.c
index 27bda2c6f1..9dabb2059f 100644
--- a/calendar/gui/dialogs/task-editor.c
+++ b/calendar/gui/dialogs/task-editor.c
@@ -452,6 +452,7 @@ task_editor_construct (TaskEditor *te, ECal *client)
bonobo_ui_component_set_prop (editor->uic, "/commands/ViewRSVP", "hidden", "1", NULL);
bonobo_ui_component_set_prop (editor->uic, "/commands/ViewType", "hidden", "1", NULL);
bonobo_ui_component_set_prop (editor->uic, "/commands/ViewStatus", "hidden", "1", NULL);
+ bonobo_ui_component_set_prop (editor->uic, "/menu/View/AttendeeOptions/timezonesep", "hidden", "1", NULL);
}
comp_editor_set_e_cal (COMP_EDITOR (te), client);