diff --git a/src/mu-msg-gmime.c b/src/mu-msg-gmime.c index 8fcddb90..9806c498 100644 --- a/src/mu-msg-gmime.c +++ b/src/mu-msg-gmime.c @@ -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 diff --git a/src/mu-msg-gmime.h b/src/mu-msg-gmime.h index a0af68a7..8446085f 100644 --- a/src/mu-msg-gmime.h +++ b/src/mu-msg-gmime.h @@ -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 *