diff options
Diffstat (limited to 'shell/e-shell-importer.c')
-rw-r--r-- | shell/e-shell-importer.c | 3 |
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++) { |