aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-display.c
diff options
context:
space:
mode:
authorKjartan Maraas <kmaraas@gnome.org>2001-03-30 04:53:17 +0800
committerKjartan Maraas <kmaraas@src.gnome.org>2001-03-30 04:53:17 +0800
commit57574f0be32f05aeaa19b71b452d690ed3edbdff (patch)
treea3992f76fdab26184ec3bfc5329f82d153437bd1 /mail/mail-display.c
parentfe962a2055234adf407999f0557ae25441ca5c35 (diff)
downloadgsoc2013-evolution-57574f0be32f05aeaa19b71b452d690ed3edbdff.tar
gsoc2013-evolution-57574f0be32f05aeaa19b71b452d690ed3edbdff.tar.gz
gsoc2013-evolution-57574f0be32f05aeaa19b71b452d690ed3edbdff.tar.bz2
gsoc2013-evolution-57574f0be32f05aeaa19b71b452d690ed3edbdff.tar.lz
gsoc2013-evolution-57574f0be32f05aeaa19b71b452d690ed3edbdff.tar.xz
gsoc2013-evolution-57574f0be32f05aeaa19b71b452d690ed3edbdff.tar.zst
gsoc2013-evolution-57574f0be32f05aeaa19b71b452d690ed3edbdff.zip
Cleaned up #includes. Remove unneccesary includes of <gnome.h>,
2001-03-29 Kjartan Maraas <kmaraas@gnome.org> * *.*: Cleaned up #includes. Remove unneccesary includes of <gnome.h>, <gtk/gtk.h>, <bonobo.h> and replaced with more fine grained headers where needed. Also marked a bunch of strings for translations and added some missing prototypes. svn path=/trunk/; revision=9025
Diffstat (limited to 'mail/mail-display.c')
-rw-r--r--mail/mail-display.c38
1 files changed, 21 insertions, 17 deletions
diff --git a/mail/mail-display.c b/mail/mail-display.c
index dcd9729f5f..5a405abdf2 100644
--- a/mail/mail-display.c
+++ b/mail/mail-display.c
@@ -8,37 +8,41 @@
*
* (C) 2000 Helix Code, Inc.
*/
+
+#ifdef HAVE_CONFIG_H
#include <config.h>
+#endif
+
#include <sys/stat.h>
#include <ctype.h>
#include <fcntl.h>
#include <errno.h>
-#include <gnome.h>
-#include "e-util/e-html-utils.h"
-#include <gal/util/e-util.h>
-#include <gal/widgets/e-popup-menu.h>
-#include "mail-display.h"
-#include "mail-config.h"
-#include "mail.h"
-#include "art/empty.xpm"
-
-#include "mail-ops.h"
-#include "mail-mt.h"
-
-#include <bonobo.h>
#include <libgnorba/gnorba.h>
-#include <bonobo/bonobo-stream-memory.h>
#include <libgnomevfs/gnome-vfs-mime-info.h>
#include <libgnomevfs/gnome-vfs-mime-handlers.h>
-
+#include <bonobo/bonobo-control-frame.h>
+#include <bonobo/bonobo-stream-memory.h>
#include <bonobo/bonobo-ui-toolbar-icon.h>
+#include <bonobo/bonobo-widget.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <gdk-pixbuf/gdk-pixbuf-loader.h>
+#include <gal/util/e-util.h>
+#include <gal/widgets/e-popup-menu.h>
#include <gtkhtml/gtkhtml-embedded.h>
#include <gtkhtml/htmlengine.h> /* XXX */
-#include <gtkhtml/htmlobject.h> /* XXX */
-#include <gtkhtml/htmlinterval.h> /* XXX */
+#include <gtkhtml/htmlobject.h> /* XXX */
#include <gtkhtml/htmltext.h> /* XXX */
+#include <gtkhtml/htmlinterval.h> /* XXX */
+
+#include <e-util/e-html-utils.h>
+
+#include "mail-display.h"
+#include "mail-config.h"
+#include "mail.h"
+#include "art/empty.xpm"
+
+#include "mail-ops.h"
+#include "mail-mt.h"
#define PARENT_TYPE (gtk_vbox_get_type ())