aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/e-shell.c5
2 files changed, 9 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index df632ac2be..66330ecf82 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,10 @@
2004-04-09 Chris Toshok <toshok@ximian.com>
+ * e-shell.c (e_shell_attempt_upgrade): make sure the component is
+ activated before calling upgradeFromVersion.
+
+2004-04-09 Chris Toshok <toshok@ximian.com>
+
* e-shell.c (e_shell_attempt_upgrade): use BASE_VERSION to supply
the major/minor version, and use UPGRADE_REVISION for the
revision.
diff --git a/shell/e-shell.c b/shell/e-shell.c
index c91152b62b..e4d60f32ae 100644
--- a/shell/e-shell.c
+++ b/shell/e-shell.c
@@ -687,7 +687,10 @@ e_shell_attempt_upgrade (EShell *shell, int major, int minor, int revision)
CORBA_exception_init (&ev);
- component_upgraded = GNOME_Evolution_Component_upgradeFromVersion (info->iface, major, minor, revision, &ev);
+ e_component_registry_activate (shell->priv->component_registry, info->id, &ev);
+
+ if (!BONOBO_EX (&ev))
+ component_upgraded = GNOME_Evolution_Component_upgradeFromVersion (info->iface, major, minor, revision, &ev);
if (BONOBO_EX (&ev)) {
char *exception_text;