aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);