diff options
author | Dan Winship <danw@src.gnome.org> | 2000-09-18 01:13:57 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-09-18 01:13:57 +0800 |
commit | 0d2998b1a1f8af2b6938d4dd40873ef80095844d (patch) | |
tree | ab44014e7b9687a82c07482212addc3f447d4c58 /camel/camel-folder-summary.h | |
parent | 7912355008d54df720894d1334313801f594c8f2 (diff) | |
download | gsoc2013-evolution-0d2998b1a1f8af2b6938d4dd40873ef80095844d.tar gsoc2013-evolution-0d2998b1a1f8af2b6938d4dd40873ef80095844d.tar.gz gsoc2013-evolution-0d2998b1a1f8af2b6938d4dd40873ef80095844d.tar.bz2 gsoc2013-evolution-0d2998b1a1f8af2b6938d4dd40873ef80095844d.tar.lz gsoc2013-evolution-0d2998b1a1f8af2b6938d4dd40873ef80095844d.tar.xz gsoc2013-evolution-0d2998b1a1f8af2b6938d4dd40873ef80095844d.tar.zst gsoc2013-evolution-0d2998b1a1f8af2b6938d4dd40873ef80095844d.zip |
update CamelFolderInfo New function to free the contents of a
* camel-folder-summary.h: update CamelFolderInfo
* camel-folder-summary.c (camel_folder_info_free): New function to
free the contents of a CamelFolderInfo
svn path=/trunk/; revision=5476
Diffstat (limited to 'camel/camel-folder-summary.h')
-rw-r--r-- | camel/camel-folder-summary.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/camel/camel-folder-summary.h b/camel/camel-folder-summary.h index 22a108192a..cd7f46a8dd 100644 --- a/camel/camel-folder-summary.h +++ b/camel/camel-folder-summary.h @@ -35,14 +35,9 @@ /*typedef struct _CamelFolderSummary CamelFolderSummary;*/ typedef struct _CamelFolderSummaryClass CamelFolderSummaryClass; -/* these structs from camel-folder-summary.h ... (remove comment after cleanup soon) */ -/* TODO: perhaps they should be full-block objects? */ -/* FIXME: rename this to something more suitable */ typedef struct { - gchar *name; - gint nb_message; /* ick, these should be renamed to something better */ - gint nb_unread_message; - gint nb_deleted_message; + char *full_name, *name; + int message_count, unread_message_count; } CamelFolderInfo; /* A tree of message content info structures @@ -235,4 +230,7 @@ void camel_tag_list_free(CamelTag **list); void camel_message_info_dup_to(const CamelMessageInfo *from, CamelMessageInfo *to); void camel_message_info_free(CamelMessageInfo *mi); +/* folder info utils */ +void camel_folder_info_free(CamelFolderInfo *fi); + #endif /* ! _CAMEL_FOLDER_SUMMARY_H */ |