diff options
author | JP Rosevear <jpr@novell.com> | 2004-10-08 05:03:36 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-10-08 05:03:36 +0800 |
commit | 02a4d3a18624282178c05978d9f8cca7e225532c (patch) | |
tree | 14235ed87aac65ccc5f5312fcc2cfe5fd5b00f32 /calendar/gui/tasks-control.c | |
parent | 63e2099d75600e4f83849f38f5390074a91e26fc (diff) | |
download | gsoc2013-evolution-02a4d3a18624282178c05978d9f8cca7e225532c.tar gsoc2013-evolution-02a4d3a18624282178c05978d9f8cca7e225532c.tar.gz gsoc2013-evolution-02a4d3a18624282178c05978d9f8cca7e225532c.tar.bz2 gsoc2013-evolution-02a4d3a18624282178c05978d9f8cca7e225532c.tar.lz gsoc2013-evolution-02a4d3a18624282178c05978d9f8cca7e225532c.tar.xz gsoc2013-evolution-02a4d3a18624282178c05978d9f8cca7e225532c.tar.zst gsoc2013-evolution-02a4d3a18624282178c05978d9f8cca7e225532c.zip |
guard config.h
2004-10-07 JP Rosevear <jpr@novell.com>
* gui/print.c: guard config.h
* gui/tasks-control.c: guard config.h, remove useless include
* gui/migration.c: remove useless include
* gui/main.c: remove useless include
* gui/e-calendar-view.h: #define the type
* gui/calendar-offline-handler.c: remove useless include
* gui/calendar-config.c: tidy header
svn path=/trunk/; revision=27501
Diffstat (limited to 'calendar/gui/tasks-control.c')
-rw-r--r-- | calendar/gui/tasks-control.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/calendar/gui/tasks-control.c b/calendar/gui/tasks-control.c index 7159d94b3a..36b8f0f07e 100644 --- a/calendar/gui/tasks-control.c +++ b/calendar/gui/tasks-control.c @@ -21,7 +21,10 @@ * Ettore Perazzoli */ +#ifdef HAVE_CONFIG_H #include <config.h> +#endif + #include <gtk/gtksignal.h> #include <gtk/gtklabel.h> #include <gtk/gtkcheckbutton.h> @@ -40,7 +43,6 @@ #include <libgnomeprintui/gnome-print-dialog.h> #include <bonobo/bonobo-control.h> #include <bonobo/bonobo-ui-util.h> -#include <gal/widgets/e-gui-utils.h> #include <e-util/e-dialog-utils.h> #include "dialogs/cal-prefs-dialog.h" #include "calendar-config.h" |