diff options
author | JP Rosevear <jpr@ximian.com> | 2004-02-07 09:20:15 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-02-07 09:20:15 +0800 |
commit | b6485cd1e4641a872d3815abd6c20618841138f5 (patch) | |
tree | cd672d25e24bd207d2ec1da344806d5356ae5e70 /shell | |
parent | 4201992af7d159867490f7c58ec6e9aee4e9bffb (diff) | |
download | gsoc2013-evolution-b6485cd1e4641a872d3815abd6c20618841138f5.tar.gz gsoc2013-evolution-b6485cd1e4641a872d3815abd6c20618841138f5.tar.zst gsoc2013-evolution-b6485cd1e4641a872d3815abd6c20618841138f5.zip |
use base version for importers
2004-02-06 JP Rosevear <jpr@ximian.com>
* importer/intelligent.c (get_intelligent_importers): use base
version for importers
svn path=/trunk/; revision=24665
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/importer/intelligent.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 916ca5873b..38ba167409 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2004-02-06 JP Rosevear <jpr@ximian.com> + + * importer/intelligent.c (get_intelligent_importers): use base + version for importers + 2004-02-06 Rodney Dawes <dobey@ximian.com> * e-shell-window-commands.c (command_quick_reference): Really make diff --git a/shell/importer/intelligent.c b/shell/importer/intelligent.c index d8c8c0b918..7a91e4fc04 100644 --- a/shell/importer/intelligent.c +++ b/shell/importer/intelligent.c @@ -142,7 +142,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 ("repo_ids.has ('IDL:GNOME/Evolution/IntelligentImporter:" BASE_VERSION "')", NULL, &ev); CORBA_exception_free (&ev); for (i = 0; i < info_list->_length; i++) { |