diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-10-04 03:24:59 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-10-04 03:24:59 +0800 |
commit | 253e90b8de63d9c064a0df05cf0e2e153f913474 (patch) | |
tree | ba6608ca96849f8f0801e4e81f7ed2aef06d391d /shell/e-shell-window.h | |
parent | 086a96050b16f6dabd99a391b5a4faf0411963a1 (diff) | |
download | gsoc2013-evolution-253e90b8de63d9c064a0df05cf0e2e153f913474.tar.gz gsoc2013-evolution-253e90b8de63d9c064a0df05cf0e2e153f913474.tar.zst gsoc2013-evolution-253e90b8de63d9c064a0df05cf0e2e153f913474.zip |
Tasks is working. Still need to deal with some loose ends and test it all.
svn path=/branches/kill-bonobo/; revision=36551
Diffstat (limited to 'shell/e-shell-window.h')
-rw-r--r-- | shell/e-shell-window.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/shell/e-shell-window.h b/shell/e-shell-window.h index d55afc6e53..e3bc22beef 100644 --- a/shell/e-shell-window.h +++ b/shell/e-shell-window.h @@ -51,6 +51,9 @@ G_BEGIN_DECLS +/* Avoid including <e-shell-view.h>, because it includes us! */ +struct _EShellView; + typedef struct _EShellWindow EShellWindow; typedef struct _EShellWindowClass EShellWindowClass; typedef struct _EShellWindowPrivate EShellWindowPrivate; @@ -74,7 +77,8 @@ GType e_shell_window_get_type (void); GtkWidget * e_shell_window_new (EShell *shell, gboolean safe_mode); EShell * e_shell_window_get_shell (EShellWindow *shell_window); -gpointer e_shell_window_get_shell_view (EShellWindow *shell_window, +struct _EShellView * + e_shell_window_get_shell_view (EShellWindow *shell_window, const gchar *view_name); GtkUIManager * e_shell_window_get_ui_manager (EShellWindow *shell_window); GtkAction * e_shell_window_get_action (EShellWindow *shell_window, |