diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2001-04-24 17:26:28 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2001-04-24 17:26:28 +0800 |
commit | 0345c9047dff096cc631d1dfee4f0a1b5a874bb5 (patch) | |
tree | 70d77658076d707b481905645b427c6249d54241 /widgets/misc/e-cell-date-edit.c | |
parent | d4d8bb904f7370102abb16a07b2e35b484826e5a (diff) | |
download | gsoc2013-evolution-0345c9047dff096cc631d1dfee4f0a1b5a874bb5.tar.gz gsoc2013-evolution-0345c9047dff096cc631d1dfee4f0a1b5a874bb5.tar.zst gsoc2013-evolution-0345c9047dff096cc631d1dfee4f0a1b5a874bb5.zip |
Added #include <glib.h> and moved corresponding local headers to the top.
2001-04-24 Kjartan Maraas <kmaraas@gnome.org>
* e-calendar-item.c, e-calendar.c, e-cell-date-edit.c,
e-clipped-label.c: Added #include <glib.h> and moved
corresponding local headers to the top.
svn path=/trunk/; revision=9540
Diffstat (limited to 'widgets/misc/e-cell-date-edit.c')
-rw-r--r-- | widgets/misc/e-cell-date-edit.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/widgets/misc/e-cell-date-edit.c b/widgets/misc/e-cell-date-edit.c index 8f64684db6..7cd54891f7 100644 --- a/widgets/misc/e-cell-date-edit.c +++ b/widgets/misc/e-cell-date-edit.c @@ -28,7 +28,12 @@ */ #include <config.h> + +#include "e-cell-date-edit.h" + +#include <string.h> #include <time.h> +#include <glib.h> #include <gdk/gdkkeysyms.h> #include <gal/util/e-util.h> #include <gal/e-table/e-table-item.h> @@ -36,8 +41,6 @@ #include <libgnomeui/gnome-stock.h> #include <libgnome/gnome-i18n.h> #include "e-util/e-time-utils.h" -#include "e-cell-date-edit.h" - /* This depends on ECalendar which is why I didn't put it in gal. */ #include "e-calendar.h" |