diff options
author | Not Zed <NotZed@Ximian.com> | 2003-02-24 11:12:46 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2003-02-24 11:12:46 +0800 |
commit | 6e61ef2ee4b9729c0122acc04127370b94edf4d6 (patch) | |
tree | 09342b001aeb51df5f93caabc1881de130e91714 /shell | |
parent | 39d5d1df1903dd76f62dc86d6825045832e6b12f (diff) | |
download | gsoc2013-evolution-6e61ef2ee4b9729c0122acc04127370b94edf4d6.tar.gz gsoc2013-evolution-6e61ef2ee4b9729c0122acc04127370b94edf4d6.tar.zst gsoc2013-evolution-6e61ef2ee4b9729c0122acc04127370b94edf4d6.zip |
fix the conf keys, currently unused.
2003-02-20 Not Zed <NotZed@Ximian.com>
* main.c (upgrade_from_1_0_if_needed): fix the conf keys, currently unused.
* e-shell.c (save_settings_for_component): lower-case the config prefix.
svn path=/trunk/; revision=20021
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 6 | ||||
-rw-r--r-- | shell/e-shell.c | 2 | ||||
-rw-r--r-- | shell/main.c | 4 |
3 files changed, 9 insertions, 3 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index c43552e801..a6f34565d0 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,9 @@ +2003-02-20 Not Zed <NotZed@Ximian.com> + + * main.c (upgrade_from_1_0_if_needed): fix the conf keys, currently unused. + + * e-shell.c (save_settings_for_component): lower-case the config prefix. + 2003-02-20 Dan Winship <danw@ximian.com> * Makefile.am (evolution_LDADD): diff --git a/shell/e-shell.c b/shell/e-shell.c index 958b1e049d..71516af329 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -1641,7 +1641,7 @@ save_settings_for_component (EShell *shell, return TRUE; } - prefix = g_strconcat ("/apps/Evolution/Shell/Components/", id, NULL); + prefix = g_strconcat ("/apps/evolution/shell/components/", id, NULL); GNOME_Evolution_Session_saveConfiguration (session_interface, prefix, &ev); if (ev._major == CORBA_NO_EXCEPTION) diff --git a/shell/main.c b/shell/main.c index f766a668ab..fed0721abf 100644 --- a/shell/main.c +++ b/shell/main.c @@ -287,7 +287,7 @@ upgrade_from_1_0_if_needed (void) config_listener = e_config_listener_new (); if (! force_upgrade - && e_config_listener_get_boolean_with_default (config_listener, "/Shell/upgrade_from_1_0_to_1_2_performed", + && e_config_listener_get_boolean_with_default (config_listener, "/apps/evolution/shell/upgrade_from_1_0_to_1_2_performed", FALSE, NULL)) return; @@ -300,7 +300,7 @@ upgrade_from_1_0_if_needed (void) else g_print ("\n*** Error upgrading configuration files -- status %d\n", result); - e_config_listener_set_boolean (config_listener, "/Shell/upgrade_from_1_0_to_1_2_performed", TRUE); + e_config_listener_set_boolean (config_listener, "/apps/evolution/shell/upgrade_from_1_0_to_1_2_performed", TRUE); g_object_unref (config_listener); #endif /* FIXME */ |