diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-01-31 12:11:14 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-03-25 02:55:24 +0800 |
commit | 5399f35bbce8f4e5775fa96b795c527002c48969 (patch) | |
tree | bc7c1975f639b8c829d44b9c6b6fb72f6a04368c /shell/e-shell.h | |
parent | 617e766a48fa928e450b1717b12b981129e5c1c4 (diff) | |
download | gsoc2013-evolution-5399f35bbce8f4e5775fa96b795c527002c48969.tar.gz gsoc2013-evolution-5399f35bbce8f4e5775fa96b795c527002c48969.tar.zst gsoc2013-evolution-5399f35bbce8f4e5775fa96b795c527002c48969.zip |
Port EShell to GtkApplication.
Diffstat (limited to 'shell/e-shell.h')
-rw-r--r-- | shell/e-shell.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/shell/e-shell.h b/shell/e-shell.h index 22aef9252f..bbb11467fc 100644 --- a/shell/e-shell.h +++ b/shell/e-shell.h @@ -22,7 +22,6 @@ #ifndef E_SHELL_H #define E_SHELL_H -#include <unique/unique.h> #include <gconf/gconf-client.h> #include <e-util/e-activity.h> @@ -90,12 +89,12 @@ typedef enum { * functions below. **/ struct _EShell { - UniqueApp parent; + GtkApplication parent; EShellPrivate *priv; }; struct _EShellClass { - UniqueAppClass parent_class; + GtkApplicationClass parent_class; gboolean (*handle_uri) (EShell *shell, const gchar *uri); @@ -154,7 +153,7 @@ gboolean e_shell_quit (EShell *shell, EShellQuitReason reason); void e_shell_cancel_quit (EShell *shell); -void e_shell_adapt_window_size (EShell *shell, +void e_shell_adapt_window_size (EShell *shell, GtkWindow *window); void e_shell_set_startup_view (EShell *shell, const gchar *view); |