* mu-msg-gmime: update comments a bit

This commit is contained in:
Dirk-Jan C. Binnema
2010-02-04 22:46:54 +02:00
parent 826aeb684d
commit d5e8aefc78
2 changed files with 11 additions and 9 deletions

View File

@ -31,12 +31,15 @@
enum _StringFields {
HTML_FIELD = 0,
TEXT_FIELD,
TO_FIELD,
CC_FIELD,
PATH_FIELD,
FLAGS_FIELD_STR,
HTML_FIELD = 0, /* body as HTML */
TEXT_FIELD, /* body as plain text */
TO_FIELD, /* To: */
CC_FIELD, /* Cc: */
PATH_FIELD, /* full path */
FLAGS_FIELD_STR, /* message flags */
FIELD_NUM
};
@ -855,8 +858,6 @@ mu_msg_gmime_get_contacts_foreach (MuMsgGMime *msg, MuMsgGMimeContactsCallback c
}
static gboolean _initialized = FALSE;
void

View File

@ -122,7 +122,7 @@ const char* mu_msg_gmime_get_to (MuMsgGMime *msg);
* there are no such recipients. the returned string should *not* be modified
* or freed.
*/
const char* mu_msg_gmime_get_cc (MuMsgGMime *msg);
const char* mu_msg_gmime_get_cc (MuMsgGMime *msg);
/**
* get the file system path of this message
@ -134,6 +134,7 @@ const char* mu_msg_gmime_get_cc (MuMsgGMime *msg);
*/
const char* mu_msg_gmime_get_path (MuMsgGMime *msg);
/**
* get the subject of this message
*