aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/gui/migration.c5
2 files changed, 8 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 0cb2b1fa11..78dddf9224 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,5 +1,10 @@
2004-01-29 JP Rosevear <jpr@ximian.com>
+ * gui/migration.c (create_calendar_contact_source): don't set the
+ group to be read only until after the source is added.
+
+2004-01-29 JP Rosevear <jpr@ximian.com>
+
* gui/migration.c (migrate_ical_folder_to_source): migrate to a
specific source
(migrate_ical_folder): create a new source based on the new source
diff --git a/calendar/gui/migration.c b/calendar/gui/migration.c
index face2434e1..5977b726d6 100644
--- a/calendar/gui/migration.c
+++ b/calendar/gui/migration.c
@@ -360,13 +360,14 @@ create_calendar_contact_source (ESourceList *source_list)
/* Create the contacts group */
group = e_source_group_new (_("Contacts"), CONTACT_BASE_URI);
- e_source_group_set_readonly (group, TRUE);
e_source_list_add_group (source_list, group, -1);
-
+
source = e_source_new (_("Birthdays & Anniversaries"), "/");
e_source_group_add_source (group, source, -1);
g_object_unref (source);
+ e_source_group_set_readonly (group, TRUE);
+
return group;
}
column1'>| | | | | | | | | | | | | | | locale set by the user. Add LANG=C and LC_ALL=C at the beginning of bsd.port.mk and export them so all commands are executed with the C locale. LC_ALL=C overrides all other LC_* variables. LANG is used by setlocale(3) as default value for LC_* variables, so normally it isn't used when LC_ALL is set, but there's code out there that looks at LANG directly so it's safer to set it as well. The only commands not captured by this are != assignments before any inclusion of bsd.port.*mk. Introduce USE_LOCALE=<locale> that adds LANG=<locale> and LC_ALL=<locale> to CONFIGURE_ENV and MAKE_ENV so upstream build systems can be executed with a different locale (e.g. USE_LOCALE=en_US.UTF-8). PR: 215882 Exp-run by: antoine Approved by: portmgr (antoine) * Reassign makc's ports back to the pool.rakuco2016-10-201-1/+1 | | | | | | | | | See "Maintainer Reset" in https://www.freebsd.org/portmgr/policies_contributors.html. makc's last commit was in March 31st (r412218), and his ports have been timing out since at least July (r418155). I also emailed him 2 weeks ago and have received no response so far. * graphics/opencv: add suffix to make room for 3.x seriesjbeich2016-10-041-2/+2 | | | | | | | | | To avoid confusion, the main port is to track the latest release. Whether to rename includes/libraries as well making it possible to install 2.x and 3.x side-by-side remains to be investigated. PR: 210505 (for tracking) Inspired by: PkgSrc * Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.mat2016-04-01