diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2004-01-27 03:56:55 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2004-01-27 03:56:55 +0800 |
commit | ca1452156e8e50ac1980319c9e30920cd06236a7 (patch) | |
tree | 45b134f360447ac507d339d2b368b06a53c8cca8 /calendar/gui/migration.c | |
parent | c703581b6fd658d184c0cc98a0879f3203299a22 (diff) | |
download | gsoc2013-evolution-ca1452156e8e50ac1980319c9e30920cd06236a7.tar.gz gsoc2013-evolution-ca1452156e8e50ac1980319c9e30920cd06236a7.tar.zst gsoc2013-evolution-ca1452156e8e50ac1980319c9e30920cd06236a7.zip |
Fixes #53338
2004-01-27 Rodrigo Moya <rodrigo@ximian.com>
Fixes #53338
* gui/dialogs/calendar-setup.c (dialog_to_source): set the relative
URI on the source for remote sources.
2004-01-27 Rodrigo Moya <rodrigo@ximian.com>
Fixes #52312
* gui/dialogs/calendar-setup.c (create_new_source_with_group):
* gui/migration.c (migrate_ical_folder, create_calendar_sources,
create_task_sources): set the relative URI for local calendars and
task lists to be the source UID.
svn path=/trunk/; revision=24446
Diffstat (limited to 'calendar/gui/migration.c')
-rw-r--r-- | calendar/gui/migration.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/calendar/gui/migration.c b/calendar/gui/migration.c index 2ba2739ebd..6ce155f239 100644 --- a/calendar/gui/migration.c +++ b/calendar/gui/migration.c @@ -304,6 +304,7 @@ migrate_ical_folder (char *old_path, ESourceGroup *dest_group, char *source_name g_object_unref (group); new_source = e_source_new (source_name, source_name); + e_source_set_relative_uri (new_source, e_source_peek_uid (new_source)); e_source_set_group (new_source, dest_group); dialog_set_folder_name (source_name); @@ -389,6 +390,7 @@ create_calendar_sources (CalendarComponent *component, new_dir = g_build_filename (base_uri, "Personal/", NULL); if (!e_mkdir_hier (new_dir, 0700)) { source = e_source_new (_("Personal"), "Personal"); + e_source_set_relative_uri (source, e_source_peek_uid (source)); e_source_group_add_source (group, source, -1); g_object_unref (source); } @@ -454,6 +456,7 @@ create_task_sources (TasksComponent *component, new_dir = g_build_filename (base_uri, "Personal/", NULL); if (!e_mkdir_hier (new_dir, 0700)) { source = e_source_new (_("Personal"), "Personal"); + e_source_set_relative_uri (source, e_source_peek_uid (source)); e_source_group_add_source (group, source, -1); g_object_unref (source); } |