diff options
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/migration.c | 7 |
2 files changed, 5 insertions, 7 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 5111eedbe3..01e66f7883 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,10 @@ 2004-03-26 JP Rosevear <jpr@ximian.com> + * gui/migration.c (migrate_calendars): no need to explicitly add + the contacts group, the create function does this properly + +2004-03-26 JP Rosevear <jpr@ximian.com> + * gui/migration.c (migrate_calendars): make sure we always sync the source list and just do it once; unref the sources we get (migrate_tasks): make sure we always sync diff --git a/calendar/gui/migration.c b/calendar/gui/migration.c index 731affe6d8..eecb0856b7 100644 --- a/calendar/gui/migration.c +++ b/calendar/gui/migration.c @@ -598,13 +598,6 @@ migrate_calendars (CalendarComponent *component, int major, int minor, int revis dialog_close (); } - if (minor == 5 && revision < 2) { - ESourceGroup *group; - - group = create_calendar_contact_source (calendar_component_peek_source_list (component)); - g_object_unref (group); - } - if (minor == 5 && revision < 5) { GConfClient *gconf; GConfValue *gconf_val; |