aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-01-31 12:11:14 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:41:47 +0800
commite9f7d5d0215011d289c2a376548b7f86c22f3cc2 (patch)
tree60b8952a94b7352f58b7f16bc598f30134ae1319 /shell/e-shell.h
parenta81f2ba463137819eccb36a8d867b050ec33e140 (diff)
downloadgsoc2013-evolution-e9f7d5d0215011d289c2a376548b7f86c22f3cc2.tar
gsoc2013-evolution-e9f7d5d0215011d289c2a376548b7f86c22f3cc2.tar.gz
gsoc2013-evolution-e9f7d5d0215011d289c2a376548b7f86c22f3cc2.tar.bz2
gsoc2013-evolution-e9f7d5d0215011d289c2a376548b7f86c22f3cc2.tar.lz
gsoc2013-evolution-e9f7d5d0215011d289c2a376548b7f86c22f3cc2.tar.xz
gsoc2013-evolution-e9f7d5d0215011d289c2a376548b7f86c22f3cc2.tar.zst
gsoc2013-evolution-e9f7d5d0215011d289c2a376548b7f86c22f3cc2.zip
Port EShell to GtkApplication.
Diffstat (limited to 'shell/e-shell.h')
-rw-r--r--shell/e-shell.h7
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);