diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-06-23 15:14:23 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-06-23 15:14:23 +0800 |
commit | bb9e2eb0600e7160deb4f0ebb67dfb7cc3bb93b9 (patch) | |
tree | 0e9f05aeca3c39e4a79e4f37cfd0a38173cc4412 /shell/e-shell.c | |
parent | 1373f7ac7325e82b6de0b83c31c1ab4eea48879a (diff) | |
download | gsoc2013-evolution-bb9e2eb0600e7160deb4f0ebb67dfb7cc3bb93b9.tar.gz gsoc2013-evolution-bb9e2eb0600e7160deb4f0ebb67dfb7cc3bb93b9.tar.zst gsoc2013-evolution-bb9e2eb0600e7160deb4f0ebb67dfb7cc3bb93b9.zip |
Fix a bunch of stupid warnings caused by missing includes. Also
placate GCC on a bogus "uninitialized variable" error.
svn path=/trunk/; revision=10438
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r-- | shell/e-shell.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index 01392b0025..de38dbcdfc 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -776,7 +776,9 @@ e_shell_construct (EShell *shell, if (register_shell (shell, iid) != OAF_REG_SUCCESS) return FALSE; - if (show_splash) { + if (! show_splash) { + splash = NULL; + } else { splash = e_splash_new (); gtk_widget_show (splash); } |