diff options
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/e-tasks.c | 2 | ||||
-rw-r--r-- | calendar/gui/gnome-cal.c | 2 |
3 files changed, 10 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index d2c1bd8a7b..1a3a6231f1 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2002-06-04 Christopher James Lahey <clahey@ximian.com> + + * gui/e-tasks.c (e_tasks_setup_view_menus), gui/gnome-cal.c + (gnome_calendar_setup_view_menus): Set the title of our + GalViewCollection. + 2002-06-03 Anna Marie Dirks <anna@ximian.com> * gui/dialogs/cal-prefs-dialog.glade: In an attempt to clean up the diff --git a/calendar/gui/e-tasks.c b/calendar/gui/e-tasks.c index db00d2f8f3..d042a02f08 100644 --- a/calendar/gui/e-tasks.c +++ b/calendar/gui/e-tasks.c @@ -738,6 +738,8 @@ e_tasks_setup_view_menus (ETasks *tasks, BonoboUIComponent *uic) if (collection == NULL) { collection = gal_view_collection_new (); + gal_view_collection_set_title (collection, _("Tasks")); + dir = gnome_util_prepend_user_home ("/evolution/views/tasks/"); gal_view_collection_set_storage_directories (collection, EVOLUTION_DATADIR "/evolution/views/tasks/", diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index 67b84575c0..7e0b88ad8c 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -1359,6 +1359,8 @@ gnome_calendar_setup_view_menus (GnomeCalendar *gcal, BonoboUIComponent *uic) if (collection == NULL) { collection = gal_view_collection_new (); + gal_view_collection_set_title (collection, _("Calendar")); + path = gnome_util_prepend_user_home ("/evolution/views/calendar/"); gal_view_collection_set_storage_directories (collection, EVOLUTION_DATADIR "/evolution/views/calendar/", |