diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2006-09-19 01:26:32 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2006-09-19 01:26:32 +0800 |
commit | cacc7b86e15415fb260a506eec728c2c4723f15c (patch) | |
tree | b2d17ff2e3802daed10ea8bad4d15c57d4575715 /shell/e-shell-window.c | |
parent | f69f47ed22603b9626fcd7931ce52649ccec68c5 (diff) | |
download | gsoc2013-evolution-cacc7b86e15415fb260a506eec728c2c4723f15c.tar.gz gsoc2013-evolution-cacc7b86e15415fb260a506eec728c2c4723f15c.tar.zst gsoc2013-evolution-cacc7b86e15415fb260a506eec728c2c4723f15c.zip |
** Fixes #351332
2006-09-18 Matthew Barnes <mbarnes@redhat.com>
** Fixes #351332
* e-shell-window.c: Fix implicit function declarations.
svn path=/trunk/; revision=32792
Diffstat (limited to 'shell/e-shell-window.c')
-rw-r--r-- | shell/e-shell-window.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c index 711f265e35..d5773baabd 100644 --- a/shell/e-shell-window.c +++ b/shell/e-shell-window.c @@ -58,6 +58,13 @@ #include <string.h> +#ifdef NM_SUPPORT_GLIB +void e_shell_nm_glib_initialise (EShellWindow *window); +void e_shell_nm_glib_dispose (EShellWindow *window); +#elif NM_SUPPORT +void e_shell_dbus_initialise (EShellWindow *window); +void e_shell_dbus_dispose (EShellWindow *window); +#endif /* A view for each component. These are all created when EShellWindow is instantiated, but with the widget pointers to NULL and the page number set |