diff options
author | JP Rosevear <jpr@ximian.com> | 2004-03-27 04:43:35 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-03-27 04:43:35 +0800 |
commit | 54e9cf9b84060c405bcbf2ff4a835c702f6cf188 (patch) | |
tree | 53761239e25a9ce79222148c6b993fa17341973a /calendar | |
parent | 1c420e296a6c33885b0516bc16abce77f794e487 (diff) | |
download | gsoc2013-evolution-54e9cf9b84060c405bcbf2ff4a835c702f6cf188.tar.gz gsoc2013-evolution-54e9cf9b84060c405bcbf2ff4a835c702f6cf188.tar.zst gsoc2013-evolution-54e9cf9b84060c405bcbf2ff4a835c702f6cf188.zip |
no need to explicitly add the contacts group, the create function does
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
svn path=/trunk/; revision=25203
Diffstat (limited to 'calendar')
-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; |