aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/contact-editor
diff options
context:
space:
mode:
authorGediminas Paulauskas <menesis@src.gnome.org>2001-04-05 08:39:19 +0800
committerGediminas Paulauskas <menesis@src.gnome.org>2001-04-05 08:39:19 +0800
commitf66390af642e3a02bbfb2974955eeae14770e406 (patch)
tree4e55b62b2139082f168ed1069f82a93773bb63e4 /addressbook/contact-editor
parentc77e63e2cc9d19f865589da454e8810f8804aedf (diff)
downloadgsoc2013-evolution-f66390af642e3a02bbfb2974955eeae14770e406.tar
gsoc2013-evolution-f66390af642e3a02bbfb2974955eeae14770e406.tar.gz
gsoc2013-evolution-f66390af642e3a02bbfb2974955eeae14770e406.tar.bz2
gsoc2013-evolution-f66390af642e3a02bbfb2974955eeae14770e406.tar.lz
gsoc2013-evolution-f66390af642e3a02bbfb2974955eeae14770e406.tar.xz
gsoc2013-evolution-f66390af642e3a02bbfb2974955eeae14770e406.tar.zst
gsoc2013-evolution-f66390af642e3a02bbfb2974955eeae14770e406.zip
Here goes my additional simple include fixes.
svn path=/trunk/; revision=9191
Diffstat (limited to 'addressbook/contact-editor')
-rw-r--r--addressbook/contact-editor/e-contact-editor.c17
-rw-r--r--addressbook/contact-editor/e-contact-editor.h5
2 files changed, 12 insertions, 10 deletions
diff --git a/addressbook/contact-editor/e-contact-editor.c b/addressbook/contact-editor/e-contact-editor.c
index 26042ee25b..e6ccf0a64d 100644
--- a/addressbook/contact-editor/e-contact-editor.c
+++ b/addressbook/contact-editor/e-contact-editor.c
@@ -21,16 +21,16 @@
*/
#include <config.h>
+
#include <time.h>
#include <gtk/gtkcheckbutton.h>
#include <gtk/gtkcheckmenuitem.h>
#include <gtk/gtkcombo.h>
#include <gtk/gtktext.h>
-#include <gtk/gtktogglebutton.h>
-#include <libgnome/gnome-defs.h>
-#include <libgnome/gnome-i18n.h>
-#include <libgnomeui/gnome-dateedit.h>
#include <libgnomeui/gnome-popup-menu.h>
+#include <libgnomeui/gnome-dateedit.h>
+#include <libgnome/gnome-i18n.h>
+
#include <bonobo/bonobo-ui-container.h>
#include <bonobo/bonobo-ui-util.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
@@ -38,13 +38,14 @@
#include <gal/widgets/e-categories.h>
#include <gal/widgets/e-gui-utils.h>
#include <gal/widgets/e-unicode.h>
-#include <addressbook/printing/e-contact-print.h>
-#include <addressbook/printing/e-contact-print-envelope.h>
-#include <e-util/e-gui-utils.h>
+
+#include "addressbook/printing/e-contact-print.h"
+#include "addressbook/printing/e-contact-print-envelope.h"
+#include "e-util/e-gui-utils.h"
#include "e-contact-editor.h"
-#include "e-contact-editor-fullname.h"
#include "e-contact-editor-address.h"
+#include "e-contact-editor-fullname.h"
#include "e-contact-save-as.h"
/* Signal IDs */
diff --git a/addressbook/contact-editor/e-contact-editor.h b/addressbook/contact-editor/e-contact-editor.h
index a2f166741f..bc54dd02b0 100644
--- a/addressbook/contact-editor/e-contact-editor.h
+++ b/addressbook/contact-editor/e-contact-editor.h
@@ -25,8 +25,9 @@
#include <libgnomeui/gnome-app-helper.h>
#include <bonobo/bonobo-ui-component.h>
#include <glade/glade.h>
-#include <addressbook/backend/ebook/e-card.h>
-#include <addressbook/backend/ebook/e-card-simple.h>
+
+#include "addressbook/backend/ebook/e-card.h"
+#include "addressbook/backend/ebook/e-card-simple.h"
#ifdef __cplusplus
extern "C" {