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/message-list.c | |
parent | fe962a2055234adf407999f0557ae25441ca5c35 (diff) | |
download | gsoc2013-evolution-57574f0be32f05aeaa19b71b452d690ed3edbdff.tar.gz 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/message-list.c')
-rw-r--r-- | mail/message-list.c | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/mail/message-list.c b/mail/message-list.c index 6cdf3f7b9f..24e4c9c61c 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -11,36 +11,37 @@ * (C) 2000 Helix Code, Inc. */ +#ifdef HAVE_CONFIG_H #include <config.h> -#include <camel/camel-exception.h> -#include <camel/camel-folder.h> -#include <e-util/ename/e-name-western.h> -#include <camel/camel-folder-thread.h> -#include <camel/camel-vtrash-folder.h> -#include <e-util/e-memory.h> +#endif #include <string.h> #include <ctype.h> -#include "mail-config.h" -#include "message-list.h" -#include "mail-mt.h" -#include "mail-tools.h" -#include "mail-ops.h" -#include "Mail.h" - #include <gal/util/e-util.h> #include <gal/widgets/e-gui-utils.h> - #include <gal/e-table/e-cell-text.h> #include <gal/e-table/e-cell-toggle.h> #include <gal/e-table/e-cell-checkbox.h> #include <gal/e-table/e-cell-tree.h> #include <gal/e-table/e-cell-date.h> #include <gal/e-table/e-cell-size.h> - +#include <gal/e-table/e-tree-memory.h> #include <gal/e-table/e-tree-memory-callbacks.h> +#include <camel/camel-exception.h> +#include <camel/camel-folder.h> +#include <e-util/ename/e-name-western.h> +#include <camel/camel-folder-thread.h> +#include <e-util/e-memory.h> + +#include "mail-config.h" +#include "message-list.h" +#include "mail-mt.h" +#include "mail-tools.h" +#include "mail-ops.h" +#include "Mail.h" + #include "art/mail-new.xpm" #include "art/mail-read.xpm" #include "art/mail-replied.xpm" |