aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-startup-wizard.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/e-shell-startup-wizard.c')
-rw-r--r--shell/e-shell-startup-wizard.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/shell/e-shell-startup-wizard.c b/shell/e-shell-startup-wizard.c
index 63460cc68b..ac6d6a4770 100644
--- a/shell/e-shell-startup-wizard.c
+++ b/shell/e-shell-startup-wizard.c
@@ -142,10 +142,14 @@ start_wizard (void)
Bonobo_ServerInfoList *info;
CORBA_Environment ev;
GNOME_Evolution_Wizard wizard;
+ char *query;
int i;
CORBA_exception_init (&ev);
- info = bonobo_activation_query ("repo_ids.has ('IDL:GNOME/Evolution/StartupWizard:1.0')", selection_order, &ev);
+ query = g_strdup_printf ("repo_ids.has ('IDL:GNOME/Evolution/StartupWizard:%s')", BASE_VERSION);
+ info = bonobo_activation_query (query, selection_order, &ev);
+ g_free (query);
+
if (BONOBO_EX (&ev) || info == CORBA_OBJECT_NIL) {
g_warning ("Cannot find startup wizard -- %s", BONOBO_EX_REPOID (&ev));
CORBA_exception_free (&ev);
@@ -513,10 +517,13 @@ get_intelligent_importers (void)
Bonobo_ServerInfoList *info_list;
GList *iids_ret = NULL;
CORBA_Environment ev;
+ char *query;
int i;
CORBA_exception_init (&ev);
- info_list = bonobo_activation_query ("repo_ids.has ('IDL:GNOME/Evolution/IntelligentImporter:1.0')", NULL, &ev);
+ query = g_strdup_printf ("repo_ids.has ('IDL:GNOME/Evolution/IntelligentImporter:%s'", BASE_VERSION);
+ info_list = bonobo_activation_query (query, NULL, &ev);
+ g_free (query);
CORBA_exception_free (&ev);
for (i = 0; i < info_list->_length; i++) {