From db7c78cc2e6da37a4bfd796ed1eb89d7a8cb498e Mon Sep 17 00:00:00 2001 From: djcb Date: Sun, 22 Aug 2010 19:31:54 +0300 Subject: [PATCH] * mu-msg-contact: small renaming --- src/mu-msg-contact.c | 4 ++-- src/mu-msg-contact.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mu-msg-contact.c b/src/mu-msg-contact.c index c1ae9342..bd802315 100644 --- a/src/mu-msg-contact.c +++ b/src/mu-msg-contact.c @@ -60,7 +60,7 @@ mu_msg_contact_destroy (MuMsgContact *ct) void -mu_msg_contact_list_foreach (GSList *lst, +mu_msg_contacts_foreach (GSList *lst, MuMsgContactForeachFunc func, gpointer user_data) { @@ -71,7 +71,7 @@ mu_msg_contact_list_foreach (GSList *lst, 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_free (lst); diff --git a/src/mu-msg-contact.h b/src/mu-msg-contact.h index 35b8df5a..d638ee68 100644 --- a/src/mu-msg-contact.h +++ b/src/mu-msg-contact.h @@ -106,7 +106,7 @@ typedef gboolean (*MuMsgContactForeachFunc) (MuMsgContact* contact, * @param func a callback function * @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, gpointer user_data); @@ -115,7 +115,7 @@ void mu_msg_contact_list_foreach (GSList *lst, * * @param lst list of MuMsgContact object */ -void mu_msg_contact_list_free (GSList *lst); +void mu_msg_contacts_free (GSList *lst);