aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/task-editor.c
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2005-11-15 02:19:13 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2005-11-15 02:19:13 +0800
commit79efc40b19f513570d800d2b3fa6293ea794a28d (patch)
tree23a9b14de06c78c6bf815591c91c697561edc2f1 /calendar/gui/dialogs/task-editor.c
parentb5e2c8cb04ca6b58723a9afe6c8c1e395ced2bbb (diff)
downloadgsoc2013-evolution-79efc40b19f513570d800d2b3fa6293ea794a28d.tar
gsoc2013-evolution-79efc40b19f513570d800d2b3fa6293ea794a28d.tar.gz
gsoc2013-evolution-79efc40b19f513570d800d2b3fa6293ea794a28d.tar.bz2
gsoc2013-evolution-79efc40b19f513570d800d2b3fa6293ea794a28d.tar.lz
gsoc2013-evolution-79efc40b19f513570d800d2b3fa6293ea794a28d.tar.xz
gsoc2013-evolution-79efc40b19f513570d800d2b3fa6293ea794a28d.tar.zst
gsoc2013-evolution-79efc40b19f513570d800d2b3fa6293ea794a28d.zip
UI changes for the event editor.
svn path=/trunk/; revision=30613
Diffstat (limited to 'calendar/gui/dialogs/task-editor.c')
-rw-r--r--calendar/gui/dialogs/task-editor.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/calendar/gui/dialogs/task-editor.c b/calendar/gui/dialogs/task-editor.c
index 5cb865d5d2..b5fdc9bd24 100644
--- a/calendar/gui/dialogs/task-editor.c
+++ b/calendar/gui/dialogs/task-editor.c
@@ -134,7 +134,7 @@ task_editor_construct (TaskEditor *te, ECal *client)
gtk_object_sink (GTK_OBJECT (priv->task_page));
comp_editor_append_page (COMP_EDITOR (te),
COMP_EDITOR_PAGE (priv->task_page),
- _("_Task"));
+ _("_Task"), TRUE);
g_signal_connect (G_OBJECT (priv->task_page), "client_changed",
G_CALLBACK (client_changed_cb), te);
@@ -143,7 +143,7 @@ task_editor_construct (TaskEditor *te, ECal *client)
gtk_object_sink (GTK_OBJECT (priv->task_details_page));
comp_editor_append_page (COMP_EDITOR (te),
COMP_EDITOR_PAGE (priv->task_details_page),
- _("_Status"));
+ _("_Status"), TRUE);
if (!e_cal_is_read_only (client, &read_only, NULL))
read_only = TRUE;
@@ -158,7 +158,7 @@ task_editor_construct (TaskEditor *te, ECal *client)
gtk_object_sink (GTK_OBJECT (priv->meet_page));
comp_editor_append_page (COMP_EDITOR (te),
COMP_EDITOR_PAGE (priv->meet_page),
- _("Assig_nment"));
+ _("Assig_nment"), TRUE);
}
comp_editor_set_e_cal (COMP_EDITOR (te), client);
@@ -220,7 +220,7 @@ task_editor_edit_comp (CompEditor *editor, ECalComponent *comp)
if (!priv->assignment_shown)
comp_editor_append_page (COMP_EDITOR (te),
COMP_EDITOR_PAGE (priv->meet_page),
- _("Assig_nment"));
+ _("Assig_nment"), TRUE);
for (l = attendees; l != NULL; l = l->next) {
ECalComponentAttendee *ca = l->data;
@@ -377,7 +377,7 @@ show_assignment (TaskEditor *te)
if (!priv->assignment_shown) {
comp_editor_append_page (COMP_EDITOR (te),
COMP_EDITOR_PAGE (priv->meet_page),
- _("Assig_nment"));
+ _("Assig_nment"), TRUE);
priv->assignment_shown = TRUE;
comp_editor_set_needs_send (COMP_EDITOR (te), priv->assignment_shown);