[evolution] Bug #635087 - Leftover files after migration of config/data/cache to XDG directories
- From: Milan Crha <mcrha src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution] Bug #635087 - Leftover files after migration of config/data/cache to XDG directories
- Date: Tue, 23 Nov 2010 09:47:28 +0000 (UTC)
commit 863b9bf6391eb64bb28106b37df206d24312e54d
Author: Mathieu Trudel-Lapierre <mathieu trudel-lapierre canonical com>
Date: Tue Nov 23 10:46:54 2010 +0100
Bug #635087 - Leftover files after migration of config/data/cache to XDG directories
shell/e-shell-migrate.c | 18 +++++++++++-------
1 files changed, 11 insertions(+), 7 deletions(-)
---
diff --git a/shell/e-shell-migrate.c b/shell/e-shell-migrate.c
index 3f3f6f5..878b121 100644
--- a/shell/e-shell-migrate.c
+++ b/shell/e-shell-migrate.c
@@ -433,14 +433,15 @@ shell_xdg_migrate_config_dir_mail (EShell *shell,
}
static void
-shell_xdg_migrate_config_dir_cleanup (EShell *shell,
+shell_xdg_migrate_dir_cleanup (EShell *shell,
const gchar *old_base_dir,
- const gchar *backend_name)
+ const gchar *backend_name,
+ const gchar *dir_name)
{
gchar *dirname;
dirname = g_build_filename (
- old_base_dir, backend_name, "config", NULL);
+ old_base_dir, backend_name, dir_name, NULL);
shell_xdg_migrate_rmdir (dirname);
@@ -467,10 +468,13 @@ shell_xdg_migrate_config_dir (EShell *shell,
/* Handle backend-specific files. */
shell_xdg_migrate_config_dir_mail (shell, old_base_dir);
- /* Remove leftover "config" directories. */
- for (ii = 0; shell_backend_names[ii] != NULL; ii++)
- shell_xdg_migrate_config_dir_cleanup (
- shell, old_base_dir, shell_backend_names[ii]);
+ /* Remove leftover config directories. */
+ for (ii = 0; shell_backend_names[ii] != NULL; ii++) {
+ shell_xdg_migrate_dir_cleanup (
+ shell, old_base_dir, shell_backend_names[ii], "config");
+ shell_xdg_migrate_dir_cleanup (
+ shell, old_base_dir, shell_backend_names[ii], "views");
+ }
/*** Miscellaneous configuration files. ***/
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]