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-account-editor.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/mail-account-editor.c')
-rw-r--r-- | mail/mail-account-editor.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/mail/mail-account-editor.c b/mail/mail-account-editor.c index 7656732f75..58fee4f465 100644 --- a/mail/mail-account-editor.c +++ b/mail/mail-account-editor.c @@ -22,15 +22,22 @@ * */ -#include "mail-account-editor.h" -#include "mail-session.h" +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <libgnomeui/gnome-messagebox.h> +#include <libgnomeui/gnome-stock.h> #include <camel/camel-url.h> #include <gal/widgets/e-unicode.h> #include <gal/widgets/e-gui-utils.h> +#include "mail-account-editor.h" +#include "mail-session.h" + static void mail_account_editor_class_init (MailAccountEditorClass *class); static void mail_account_editor_finalize (GtkObject *obj); |