diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-09-07 12:02:27 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-09-07 12:02:27 +0800 |
commit | 52d683e48cf1103a9806da95c72abce2db3ae1f4 (patch) | |
tree | b6cee16af70a03666a2d7add2e5bff5c6ed8035c /shell/e-shell-module.c | |
parent | eca687589d106ff87cd4fca7bf581cb0532caf96 (diff) | |
download | gsoc2013-evolution-52d683e48cf1103a9806da95c72abce2db3ae1f4.tar gsoc2013-evolution-52d683e48cf1103a9806da95c72abce2db3ae1f4.tar.gz gsoc2013-evolution-52d683e48cf1103a9806da95c72abce2db3ae1f4.tar.bz2 gsoc2013-evolution-52d683e48cf1103a9806da95c72abce2db3ae1f4.tar.lz gsoc2013-evolution-52d683e48cf1103a9806da95c72abce2db3ae1f4.tar.xz gsoc2013-evolution-52d683e48cf1103a9806da95c72abce2db3ae1f4.tar.zst gsoc2013-evolution-52d683e48cf1103a9806da95c72abce2db3ae1f4.zip |
Progress update:
- Contacts module mostly working now.
- View and search UI not yet working.
- Still refining shell design.
svn path=/branches/kill-bonobo/; revision=36268
Diffstat (limited to 'shell/e-shell-module.c')
-rw-r--r-- | shell/e-shell-module.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/shell/e-shell-module.c b/shell/e-shell-module.c index ed8d2411f1..75dbc3756f 100644 --- a/shell/e-shell-module.c +++ b/shell/e-shell-module.c @@ -303,6 +303,14 @@ e_shell_module_get_filename (EShellModule *shell_module) return shell_module->priv->filename; } +const gchar * +e_shell_module_get_searches (EShellModule *shell_module) +{ + g_return_val_if_fail (E_IS_SHELL_MODULE (shell_module), NULL); + + return shell_module->priv->info.searches; +} + EShell * e_shell_module_get_shell (EShellModule *shell_module) { @@ -361,6 +369,7 @@ e_shell_module_set_info (EShellModule *shell_module, module_info->aliases = g_intern_string (info->aliases); module_info->schemes = g_intern_string (info->schemes); + module_info->searches = g_intern_string (info->searches); module_info->sort_order = info->sort_order; module_info->is_busy = info->is_busy; |