diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-08-16 23:25:08 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-08-16 23:42:26 +0800 |
commit | 672adf12a0923437e90d08ab7925bd9329fcce0d (patch) | |
tree | 53c076d56359c111085dad615295ecf0f5be7342 /shell | |
parent | c4716bf2e904a4bcf573ee30841378c1f53092ee (diff) | |
download | gsoc2013-evolution-672adf12a0923437e90d08ab7925bd9329fcce0d.tar.gz gsoc2013-evolution-672adf12a0923437e90d08ab7925bd9329fcce0d.tar.zst gsoc2013-evolution-672adf12a0923437e90d08ab7925bd9329fcce0d.zip |
Fix compiler warnings and deprecated GTK+ API usage.
Diffstat (limited to 'shell')
-rw-r--r-- | shell/e-shell-window-private.h | 1 | ||||
-rw-r--r-- | shell/e-shell.c | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/shell/e-shell-window-private.h b/shell/e-shell-window-private.h index b0bfe7c63a..5314a3679f 100644 --- a/shell/e-shell-window-private.h +++ b/shell/e-shell-window-private.h @@ -29,6 +29,7 @@ #include <e-util/e-util.h> #include <e-util/e-binding.h> +#include <e-util/e-plugin-ui.h> #include <e-util/gconf-bridge.h> #include <widgets/misc/e-menu-tool-button.h> #include <widgets/misc/e-online-button.h> diff --git a/shell/e-shell.c b/shell/e-shell.c index e8a95b1523..8e05980623 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -310,7 +310,7 @@ shell_ready_for_quit (EShell *shell, g_list_free (list); } -void +static void shell_prepare_for_quit (EShell *shell) { GList *list, *iter; @@ -344,7 +344,7 @@ shell_prepare_for_quit (EShell *shell) gtk_widget_set_sensitive (GTK_WIDGET (iter->data), FALSE); } -gboolean +static gboolean shell_request_quit (EShell *shell) { /* Are preparations already in progress? */ |