diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2001-03-30 04:53:17 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2001-03-30 04:53:17 +0800 |
commit | 57574f0be32f05aeaa19b71b452d690ed3edbdff (patch) | |
tree | a3992f76fdab26184ec3bfc5329f82d153437bd1 /mail/mail-format.c | |
parent | fe962a2055234adf407999f0557ae25441ca5c35 (diff) | |
download | gsoc2013-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-format.c')
-rw-r--r-- | mail/mail-format.c | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/mail/mail-format.c b/mail/mail-format.c index f6a145294e..6cc6cccc1c 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -23,24 +23,29 @@ * */ +#ifdef HAVE_CONFIG_H #include <config.h> +#endif + +#include <ctype.h> /* for isprint */ +#include <string.h> /* for strstr */ +#include <fcntl.h> + +#include <liboaf/liboaf.h> +#include <libgnome/libgnome.h> +#include <libgnomevfs/gnome-vfs-mime-info.h> +#include <libgnomevfs/gnome-vfs-mime-handlers.h> +#include <gal/widgets/e-unicode.h> + +#include <camel/camel-mime-utils.h> +#include <shell/e-setup.h> +#include <e-util/e-html-utils.h> + #include "mail.h" #include "mail-tools.h" #include "mail-display.h" #include "mail-crypto.h" #include "mail-mt.h" -#include "shell/e-setup.h" -#include "e-util/e-html-utils.h" -#include <gal/widgets/e-unicode.h> -#include <camel/camel-mime-utils.h> -#include <libgnome/libgnome.h> -#include <libgnomevfs/gnome-vfs-mime-info.h> -#include <libgnomevfs/gnome-vfs-mime-handlers.h> -#include <liboaf/liboaf.h> - -#include <ctype.h> /* for isprint */ -#include <string.h> /* for strstr */ -#include <fcntl.h> static char *get_data_wrapper_text (CamelDataWrapper *data); |