diff options
author | Chris Halls <halls@debian.org> | 2006-12-03 23:38:39 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2006-12-03 23:38:39 +0800 |
commit | db651b7bc40e4855e0a94ff88ddc57c9c79f503d (patch) | |
tree | 19385ab542ada3e3cfdf4116ba9b34901314b412 | |
parent | 648eb7319c6a2800fa49caf7ad4e37a8bfe5c872 (diff) | |
download | gsoc2013-evolution-db651b7bc40e4855e0a94ff88ddc57c9c79f503d.tar.gz gsoc2013-evolution-db651b7bc40e4855e0a94ff88ddc57c9c79f503d.tar.zst gsoc2013-evolution-db651b7bc40e4855e0a94ff88ddc57c9c79f503d.zip |
Register import eplugin type. Fixes bug #372528.
2006-11-29 Chris Halls <halls@debian.org>
* main.c: Register import eplugin type.
Fixes bug #372528.
svn path=/trunk/; revision=33033
-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(); } |