aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/imap/camel-imap-folder.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-06-17 13:29:55 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-06-17 13:29:55 +0800
commit18dc66f5943935bdb5cbc1f52082aadea55a68ea (patch)
treebd7d945abb5a231badfc5f58b6828f24b185c424 /camel/providers/imap/camel-imap-folder.h
parent7070854816195a5bc4b64d29c5565fa4e94b1475 (diff)
downloadgsoc2013-evolution-18dc66f5943935bdb5cbc1f52082aadea55a68ea.tar
gsoc2013-evolution-18dc66f5943935bdb5cbc1f52082aadea55a68ea.tar.gz
gsoc2013-evolution-18dc66f5943935bdb5cbc1f52082aadea55a68ea.tar.bz2
gsoc2013-evolution-18dc66f5943935bdb5cbc1f52082aadea55a68ea.tar.lz
gsoc2013-evolution-18dc66f5943935bdb5cbc1f52082aadea55a68ea.tar.xz
gsoc2013-evolution-18dc66f5943935bdb5cbc1f52082aadea55a68ea.tar.zst
gsoc2013-evolution-18dc66f5943935bdb5cbc1f52082aadea55a68ea.zip
Added code to expunge if called for (still need to finish coding this).
2000-06-16 Jeffrey Stedfast <fejj@helixcode.com> * providers/imap/camel-imap-folder.c (imap_sync): Added code to expunge if called for (still need to finish coding this). (imap_get_uids): Implemented. (imap_get_summary): Found a way to get the date (imap_summary_get_by_uid): Same. (imap_free_summary): Implemented. * string-utils.c (strstrcase): Fixed a compile warning * providers/imap/camel-imap-summary.c: Removed - we don't need a CamelImapSummary structure. svn path=/trunk/; revision=3606
Diffstat (limited to 'camel/providers/imap/camel-imap-folder.h')
-rw-r--r--camel/providers/imap/camel-imap-folder.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/camel/providers/imap/camel-imap-folder.h b/camel/providers/imap/camel-imap-folder.h
index 1b7676b4f8..a450182552 100644
--- a/camel/providers/imap/camel-imap-folder.h
+++ b/camel/providers/imap/camel-imap-folder.h
@@ -35,9 +35,7 @@ extern "C" {
#include <gtk/gtk.h>
#include "camel-folder.h"
-#include "camel-imap-summary.h"
#include <camel/camel-folder-search.h>
-#include <libibex/ibex.h>
#define CAMEL_IMAP_FOLDER_TYPE (camel_imap_folder_get_type ())
#define CAMEL_IMAP_FOLDER(obj) (GTK_CHECK_CAST((obj), CAMEL_IMAP_FOLDER_TYPE, CamelImapFolder))
@@ -47,8 +45,6 @@ extern "C" {
typedef struct {
CamelFolder parent_object;
- ibex *index; /* index for this folder */
- CamelImapSummary *summary;
CamelFolderSearch *search; /* used to run searches, we just use the real thing (tm) */
gint count;