diff options
author | JP Rosevear <jpr@ximian.com> | 2004-02-07 09:25:21 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-02-07 09:25:21 +0800 |
commit | 19864e820204ccfb9f25aa7afd82a0be5078d5fe (patch) | |
tree | effe906ff155a8b3b1200fd2105e85a36d1119cf /shell | |
parent | b6485cd1e4641a872d3815abd6c20618841138f5 (diff) | |
download | gsoc2013-evolution-19864e820204ccfb9f25aa7afd82a0be5078d5fe.tar.gz 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')
-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++) { |