diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/main.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 42f86e5a20..449079b268 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2006-11-29 Chris Halls <halls@debian.org> + + * main.c: Register import eplugin type. + Fixes bug #372528. + 2006-10-17 Harish Krishnaswamy <kharish@novell.com> * main.c: (show_development_warning): Update last diff --git a/shell/main.c b/shell/main.c index bab8ecb087..d7a6c21abd 100644 --- a/shell/main.c +++ b/shell/main.c @@ -75,6 +75,7 @@ #include <misc/e-cursors.h> #include "e-util/e-error.h" +#include "e-util/e-import.h" #include <fcntl.h> #include <signal.h> @@ -598,6 +599,7 @@ main (int argc, char **argv) e_plugin_hook_register_type(e_profile_event_hook_get_type()); #endif e_plugin_hook_register_type(e_plugin_type_hook_get_type()); + e_plugin_hook_register_type(e_import_hook_get_type()); e_plugin_load_plugins(); } |