diff options
-rw-r--r-- | shell/ChangeLog | 6 | ||||
-rw-r--r-- | shell/e-shell-importer.c | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 38ba167409..c1bd5806b4 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,8 +1,12 @@ 2004-02-06 JP Rosevear <jpr@ximian.com> * importer/intelligent.c (get_intelligent_importers): use base - version for importers + version for intelligent importers + * e-shell-importer.c (get_intelligent_importers): ditto + + Fixes #54004 + 2004-02-06 Rodney Dawes <dobey@ximian.com> * e-shell-window-commands.c (command_quick_reference): Really make 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++) { |