Fix a bunch of stupid warnings caused by missing includes. Also

placate GCC on a bogus "uninitialized variable" error.

svn path=/trunk/; revision=10438
This commit is contained in:
Ettore Perazzoli
2001-06-23 07:14:23 +00:00
parent 1373f7ac73
commit bb9e2eb060
5 changed files with 25 additions and 3 deletions

View File

@ -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);
}