aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/e-book-shell-module.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2009-02-19 20:31:06 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2009-02-19 20:31:06 +0800
commit1b782407524f2ca4a2dc4849098a21f9d1bdff09 (patch)
tree95a676e1deb4cec0c1e2930636e6953c87cb8022 /addressbook/gui/component/e-book-shell-module.c
parent1a40acf554290883d6cf2a491dc36685842fd26b (diff)
downloadgsoc2013-evolution-1b782407524f2ca4a2dc4849098a21f9d1bdff09.tar
gsoc2013-evolution-1b782407524f2ca4a2dc4849098a21f9d1bdff09.tar.gz
gsoc2013-evolution-1b782407524f2ca4a2dc4849098a21f9d1bdff09.tar.bz2
gsoc2013-evolution-1b782407524f2ca4a2dc4849098a21f9d1bdff09.tar.lz
gsoc2013-evolution-1b782407524f2ca4a2dc4849098a21f9d1bdff09.tar.xz
gsoc2013-evolution-1b782407524f2ca4a2dc4849098a21f9d1bdff09.tar.zst
gsoc2013-evolution-1b782407524f2ca4a2dc4849098a21f9d1bdff09.zip
Fix crash on startup.
svn path=/branches/kill-bonobo/; revision=37295
Diffstat (limited to 'addressbook/gui/component/e-book-shell-module.c')
-rw-r--r--addressbook/gui/component/e-book-shell-module.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/component/e-book-shell-module.c b/addressbook/gui/component/e-book-shell-module.c
index 0197661326..e4648e138d 100644
--- a/addressbook/gui/component/e-book-shell-module.c
+++ b/addressbook/gui/component/e-book-shell-module.c
@@ -458,7 +458,7 @@ e_shell_module_init (GTypeModule *type_module)
* things that use S/MIME. Maybe put it in EShell? */
#ifdef ENABLE_SMIME
smime_component_init ();
- certificate_manager_config_init ();
+ certificate_manager_config_init (shell);
#endif
book_module_init_importers ();
@@ -474,5 +474,5 @@ e_shell_module_init (GTypeModule *type_module)
shell, "window-created",
G_CALLBACK (book_module_window_created_cb), shell_module);
- autocompletion_config_init ();
+ autocompletion_config_init (shell);
}