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/importer | |
parent | 1373f7ac7325e82b6de0b83c31c1ab4eea48879a (diff) | |
download | gsoc2013-evolution-bb9e2eb0600e7160deb4f0ebb67dfb7cc3bb93b9.tar gsoc2013-evolution-bb9e2eb0600e7160deb4f0ebb67dfb7cc3bb93b9.tar.gz gsoc2013-evolution-bb9e2eb0600e7160deb4f0ebb67dfb7cc3bb93b9.tar.bz2 gsoc2013-evolution-bb9e2eb0600e7160deb4f0ebb67dfb7cc3bb93b9.tar.lz gsoc2013-evolution-bb9e2eb0600e7160deb4f0ebb67dfb7cc3bb93b9.tar.xz 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/importer')
-rw-r--r-- | shell/importer/intelligent.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/importer/intelligent.c b/shell/importer/intelligent.c index be9863e8d7..260b62ea77 100644 --- a/shell/importer/intelligent.c +++ b/shell/importer/intelligent.c @@ -27,8 +27,12 @@ #endif #include "intelligent.h" + #include <glib.h> + +#include <gtk/gtkdrawingarea.h> #include <gtk/gtkbox.h> +#include <gtk/gtkhbox.h> #include <gtk/gtkcheckbutton.h> #include <gtk/gtklabel.h> #include <gtk/gtkmain.h> |