aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-importer.c
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2004-02-07 09:25:21 +0800
committerJP Rosevear <jpr@src.gnome.org>2004-02-07 09:25:21 +0800
commit19864e820204ccfb9f25aa7afd82a0be5078d5fe (patch)
treeeffe906ff155a8b3b1200fd2105e85a36d1119cf /shell/e-shell-importer.c
parentb6485cd1e4641a872d3815abd6c20618841138f5 (diff)
downloadgsoc2013-evolution-19864e820204ccfb9f25aa7afd82a0be5078d5fe.tar
gsoc2013-evolution-19864e820204ccfb9f25aa7afd82a0be5078d5fe.tar.gz
gsoc2013-evolution-19864e820204ccfb9f25aa7afd82a0be5078d5fe.tar.bz2
gsoc2013-evolution-19864e820204ccfb9f25aa7afd82a0be5078d5fe.tar.lz
gsoc2013-evolution-19864e820204ccfb9f25aa7afd82a0be5078d5fe.tar.xz
gsoc2013-evolution-19864e820204ccfb9f25aa7afd82a0be5078d5fe.tar.zst
gsoc2013-evolution-19864e820204ccfb9f25aa7afd82a0be5078d5fe.zip
use base version for intelligent importers
2004-02-06 JP Rosevear <jpr@ximian.com> * importer/intelligent.c (get_intelligent_importers): use base version for intelligent importers * e-shell-importer.c (get_intelligent_importers): ditto Fixes #54004 svn path=/trunk/; revision=24666
Diffstat (limited to 'shell/e-shell-importer.c')
-rw-r--r--shell/e-shell-importer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c
index 578b968184..0eba8d593d 100644
--- a/shell/e-shell-importer.c
+++ b/shell/e-shell-importer.c
@@ -126,6 +126,7 @@ typedef struct _SelectedImporterData{
} SelectedImporterData;
#define IMPORTER_REPO_ID_QUERY "repo_ids.has ('IDL:GNOME/Evolution/Importer:" BASE_VERSION "')"
+#define IMPORTER_INTEL_REPO_ID_QUERY "repo_ids.has ('IDL:GNOME/Evolution/IntelligentImporter:" BASE_VERSION "')"
#define IMPORTER_DEBUG
#ifdef IMPORTER_DEBUG
@@ -681,7 +682,7 @@ get_intelligent_importers (void)
int i;
CORBA_exception_init (&ev);
- info_list = bonobo_activation_query ("repo_ids.has ('IDL:GNOME/Evolution/IntelligentImporter:1.0')", NULL, &ev);
+ info_list = bonobo_activation_query (IMPORTER_INTEL_REPO_ID_QUERY, NULL, &ev);
CORBA_exception_free (&ev);
for (i = 0; i < info_list->_length; i++) {