* mu-msg-contact: small renaming

This commit is contained in:
djcb
2010-08-22 19:31:54 +03:00
parent 3cdb1f15ed
commit db7c78cc2e
2 changed files with 4 additions and 4 deletions

View File

@ -60,7 +60,7 @@ mu_msg_contact_destroy (MuMsgContact *ct)
void void
mu_msg_contact_list_foreach (GSList *lst, mu_msg_contacts_foreach (GSList *lst,
MuMsgContactForeachFunc func, MuMsgContactForeachFunc func,
gpointer user_data) gpointer user_data)
{ {
@ -71,7 +71,7 @@ mu_msg_contact_list_foreach (GSList *lst,
void void
mu_msg_contact_list_free (GSList *lst) mu_msg_contacts_free (GSList *lst)
{ {
g_slist_foreach (lst, (GFunc)mu_msg_contact_destroy, NULL); g_slist_foreach (lst, (GFunc)mu_msg_contact_destroy, NULL);
g_slist_free (lst); g_slist_free (lst);

View File

@ -106,7 +106,7 @@ typedef gboolean (*MuMsgContactForeachFunc) (MuMsgContact* contact,
* @param func a callback function * @param func a callback function
* @param user_data user pointer, passed to the callback * @param user_data user pointer, passed to the callback
*/ */
void mu_msg_contact_list_foreach (GSList *lst, void mu_msg_contacts_foreach (GSList *lst,
MuMsgContactForeachFunc func, MuMsgContactForeachFunc func,
gpointer user_data); gpointer user_data);
@ -115,7 +115,7 @@ void mu_msg_contact_list_foreach (GSList *lst,
* *
* @param lst list of MuMsgContact object * @param lst list of MuMsgContact object
*/ */
void mu_msg_contact_list_free (GSList *lst); void mu_msg_contacts_free (GSList *lst);