* mu-msg-util: some minor cosmetic fixes

This commit is contained in:
Dirk-Jan C. Binnema
2010-08-18 23:45:50 +03:00
parent 6b1fa8db25
commit 5fb3e7fd36
3 changed files with 22 additions and 13 deletions

View File

@ -52,9 +52,9 @@ enum _MuMsgContactType { /* Reply-To:? */
typedef enum _MuMsgContactType MuMsgContactType;
struct _MuMsgContact {
const char *_name; /* Foo Bar */
const char *_addr; /* foo@bar.cuux */
MuMsgContactType _type; /*MU_MSG_CONTACT_TYPE_{TO,CC,BCC,FROM}*/
const char *name; /* Foo Bar */
const char *address; /* foo@bar.cuux */
MuMsgContactType type; /*MU_MSG_CONTACT_TYPE_{TO,CC,BCC,FROM}*/
};
typedef struct _MuMsgContact MuMsgContact;