diff options
author | Michael Zucci <zucchi@src.gnome.org> | 2000-08-23 17:10:43 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2000-08-23 17:10:43 +0800 |
commit | 1566594525ab6d7accd167e1f00dfa320e438cb6 (patch) | |
tree | afaefa60bca9e3b18274b14f88492ff5c5698b1d | |
parent | f05ae9ba25935518ca945a4bf4fe80a6a4ff38e7 (diff) | |
download | gsoc2013-evolution-1566594525ab6d7accd167e1f00dfa320e438cb6.tar gsoc2013-evolution-1566594525ab6d7accd167e1f00dfa320e438cb6.tar.gz gsoc2013-evolution-1566594525ab6d7accd167e1f00dfa320e438cb6.tar.bz2 gsoc2013-evolution-1566594525ab6d7accd167e1f00dfa320e438cb6.tar.lz gsoc2013-evolution-1566594525ab6d7accd167e1f00dfa320e438cb6.tar.xz gsoc2013-evolution-1566594525ab6d7accd167e1f00dfa320e438cb6.tar.zst gsoc2013-evolution-1566594525ab6d7accd167e1f00dfa320e438cb6.zip |
Missing commit, changes for search gui to link.
svn path=/trunk/; revision=4981
-rw-r--r-- | addressbook/gui/component/addressbook-component.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/addressbook/gui/component/addressbook-component.c b/addressbook/gui/component/addressbook-component.c index b066330a49..4a73821630 100644 --- a/addressbook/gui/component/addressbook-component.c +++ b/addressbook/gui/component/addressbook-component.c @@ -41,6 +41,10 @@ #define COMPONENT_FACTORY_ID "evolution-shell-component-factory:addressbook" #endif +/* Nasty hack for filters to be able to find folders */ +/* Not even used with addressbook??? */ +EvolutionShellClient *global_shell_client; + static BonoboGenericFactory *factory = NULL; static const EvolutionShellComponentFolderType folder_types[] = { @@ -81,6 +85,9 @@ owner_set_cb (EvolutionShellComponent *shell_component, { owner_count ++; + if (global_shell_client == NULL) + global_shell_client = shell_client; + setup_ldap_storage (shell_component, evolution_homedir); } |