* add basic support for X-Label (WIP)

This commit is contained in:
Dirk-Jan C. Binnema
2011-06-16 00:26:30 +03:00
parent 2a36799054
commit 9971c1e7ae
6 changed files with 50 additions and 13 deletions

View File

@ -426,6 +426,14 @@ mu_msg_get_references (MuMsg *self)
}
const GSList*
mu_msg_get_tags (MuMsg *self)
{
g_return_val_if_fail (self, NULL);
return get_str_list_field (self, MU_MSG_FIELD_ID_TAGS);
}
const char*
mu_msg_get_field_string (MuMsg *self, MuMsgFieldId mfid)
{