diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2014-02-16 22:36:49 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2014-03-03 08:36:01 +0800 |
commit | c53fbc0b8f3b98827d6816a627bdd4d467b84f74 (patch) | |
tree | 10eb8683b6d413f9ae6946dcaf303c29027a84ef /shell | |
parent | 1e3d8b5c68754c377c54423f1fb9a322eb3ec9e8 (diff) | |
download | gsoc2013-evolution-c53fbc0b8f3b98827d6816a627bdd4d467b84f74.tar gsoc2013-evolution-c53fbc0b8f3b98827d6816a627bdd4d467b84f74.tar.gz gsoc2013-evolution-c53fbc0b8f3b98827d6816a627bdd4d467b84f74.tar.bz2 gsoc2013-evolution-c53fbc0b8f3b98827d6816a627bdd4d467b84f74.tar.lz gsoc2013-evolution-c53fbc0b8f3b98827d6816a627bdd4d467b84f74.tar.xz gsoc2013-evolution-c53fbc0b8f3b98827d6816a627bdd4d467b84f74.tar.zst gsoc2013-evolution-c53fbc0b8f3b98827d6816a627bdd4d467b84f74.zip |
Miscellaneous cleanups.
Diffstat (limited to 'shell')
-rw-r--r-- | shell/e-shell-backend.c | 2 | ||||
-rw-r--r-- | shell/e-shell-window-private.h | 8 | ||||
-rw-r--r-- | shell/e-shell.c | 18 |
3 files changed, 14 insertions, 14 deletions
diff --git a/shell/e-shell-backend.c b/shell/e-shell-backend.c index bb91f7379e..a0b0e59d84 100644 --- a/shell/e-shell-backend.c +++ b/shell/e-shell-backend.c @@ -62,7 +62,7 @@ struct _EShellBackendPrivate { /* This is set to delay shutdown. */ gulong notify_busy_handler_id; - guint started : 1; + guint started : 1; }; enum { diff --git a/shell/e-shell-window-private.h b/shell/e-shell-window-private.h index 95d541058a..777957ec37 100644 --- a/shell/e-shell-window-private.h +++ b/shell/e-shell-window-private.h @@ -89,11 +89,11 @@ struct _EShellWindowPrivate { gchar *geometry; guint destroyed : 1; /* XXX Do we still need this? */ - guint safe_mode : 1; - guint sidebar_visible : 1; + guint safe_mode : 1; + guint sidebar_visible : 1; guint switcher_visible : 1; - guint taskbar_visible : 1; - guint toolbar_visible : 1; + guint taskbar_visible : 1; + guint toolbar_visible : 1; }; void e_shell_window_private_init (EShellWindow *shell_window); diff --git a/shell/e-shell.c b/shell/e-shell.c index 9f4c9ecc3f..b1a8e7e125 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -67,15 +67,15 @@ struct _EShellPrivate { gulong backend_died_handler_id; - guint auto_reconnect : 1; - guint express_mode : 1; - guint modules_loaded : 1; - guint network_available : 1; - guint network_available_set : 1; - guint network_available_locked : 1; - guint online : 1; - guint quit_cancelled : 1; - guint safe_mode : 1; + guint auto_reconnect : 1; + guint express_mode : 1; + guint modules_loaded : 1; + guint network_available : 1; + guint network_available_set : 1; + guint network_available_locked : 1; + guint online : 1; + guint quit_cancelled : 1; + guint safe_mode : 1; }; enum { |