aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-importer.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-importer.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-importer.c')
-rw-r--r--mail/mail-importer.c19
1 files changed, 12 insertions, 7 deletions
diff --git a/mail/mail-importer.c b/mail/mail-importer.c
index 85dfe5a57a..dd30807645 100644
--- a/mail/mail-importer.c
+++ b/mail/mail-importer.c
@@ -25,19 +25,20 @@
#include <config.h>
#endif
-#include <bonobo.h>
-#include "mail-importer.h"
-#include "mail-local.h"
-#include "mail.h"
-
+#include <dirent.h>
+#include <gmodule.h>
+#include <libgnome/gnome-defs.h>
+#include <libgnome/gnome-util.h>
#include <evolution-storage.h>
#include <camel/camel-folder.h>
#include <camel/camel-mime-message.h>
#include <camel/camel-stream-mem.h>
#include <camel/camel-exception.h>
-#include <dirent.h>
-#include <gmodule.h>
+#include "mail-importer.h"
+#include "mail-local.h"
+#include "mail.h"
+
static GList *importer_modules = NULL;
@@ -45,6 +46,10 @@ extern char *evolution_dir;
static GNOME_Evolution_LocalStorage local_storage = NULL;
+/* Prototype */
+
+void mail_importer_uninit (void);
+
/**
* mail_importer_create_folder:
* parent_path: The path of the parent folder.