diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-06-10 05:19:57 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-06-10 05:19:57 +0800 |
commit | 08cb892beab3ede04759a23e04b72e558de21cfb (patch) | |
tree | 89d71bc129b43074b84b6dbfcf21c55a8c82f466 /camel/providers/imap/camel-imap-folder.h | |
parent | d4d2509314390320af15be637fba93fb969ec24f (diff) | |
download | gsoc2013-evolution-08cb892beab3ede04759a23e04b72e558de21cfb.tar.gz gsoc2013-evolution-08cb892beab3ede04759a23e04b72e558de21cfb.tar.zst gsoc2013-evolution-08cb892beab3ede04759a23e04b72e558de21cfb.zip |
Updated to reflect changes made in camel-imap-store.c
2000-06-09 Jeffrey Stedfast <fejj@helixcode.com>
* providers/imap/camel-imap-stream.c (stream_read): Updated to reflect
changes made in camel-imap-store.c
* providers/imap/camel-imap-store.c (imap_create): No longer checks to
make sure a folder doesn't already exists (as this is no longer needed)
(camel_imap_command): Now takes a CamelFolder argument so it can detect
whether or not it needs to SELECT a folder or not
(camel_imap_command_extended): Same.
svn path=/trunk/; revision=3494
Diffstat (limited to 'camel/providers/imap/camel-imap-folder.h')
-rw-r--r-- | camel/providers/imap/camel-imap-folder.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/camel/providers/imap/camel-imap-folder.h b/camel/providers/imap/camel-imap-folder.h index 479a43c45c..1b7676b4f8 100644 --- a/camel/providers/imap/camel-imap-folder.h +++ b/camel/providers/imap/camel-imap-folder.h @@ -47,10 +47,6 @@ extern "C" { typedef struct { CamelFolder parent_object; - gchar *folder_file_path; /* contains the messages */ - gchar *folder_dir_path; /* contains the subfolders */ - gchar *index_file_path; /* index of body contents */ - ibex *index; /* index for this folder */ CamelImapSummary *summary; CamelFolderSearch *search; /* used to run searches, we just use the real thing (tm) */ @@ -78,3 +74,5 @@ GtkType camel_imap_folder_get_type (void); #endif /* __cplusplus */ #endif /* CAMEL_IMAP_FOLDER_H */ + + |