From e444ee9b051168bbd591b9eadb03ae5f735e346f Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Wed, 22 Apr 2009 12:16:10 +0200 Subject: [PATCH] Rename empathy_contact_new_static to empathy_contact_new_for_log --- libempathy/empathy-contact.c | 8 ++++---- libempathy/empathy-contact.h | 2 +- libempathy/empathy-log-store-empathy.c | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/libempathy/empathy-contact.c b/libempathy/empathy-contact.c index 27f3ff9c..fe8cf823 100644 --- a/libempathy/empathy-contact.c +++ b/libempathy/empathy-contact.c @@ -389,10 +389,10 @@ empathy_contact_new (TpContact *tp_contact) } EmpathyContact * -empathy_contact_new_static (McAccount *account, - const gchar *id, - const gchar *name, - gboolean is_user) +empathy_contact_new_for_log (McAccount *account, + const gchar *id, + const gchar *name, + gboolean is_user) { g_return_val_if_fail (MC_IS_ACCOUNT (account), NULL); g_return_val_if_fail (id != NULL, NULL); diff --git a/libempathy/empathy-contact.h b/libempathy/empathy-contact.h index 0fab9046..c10561d0 100644 --- a/libempathy/empathy-contact.h +++ b/libempathy/empathy-contact.h @@ -68,7 +68,7 @@ typedef enum { GType empathy_contact_get_type (void) G_GNUC_CONST; EmpathyContact * empathy_contact_new (TpContact *tp_contact); -EmpathyContact * empathy_contact_new_static (McAccount *account, +EmpathyContact * empathy_contact_new_for_log (McAccount *account, const gchar *id, const gchar *name, gboolean is_user); TpContact * empathy_contact_get_tp_contact (EmpathyContact *contact); const gchar * empathy_contact_get_id (EmpathyContact *contact); diff --git a/libempathy/empathy-log-store-empathy.c b/libempathy/empathy-log-store-empathy.c index 6485d007..b74b5e17 100644 --- a/libempathy/empathy-log-store-empathy.c +++ b/libempathy/empathy-log-store-empathy.c @@ -481,8 +481,8 @@ log_store_empathy_get_messages_for_file (EmpathyLogStore *self, t = empathy_time_parse (time); - sender = empathy_contact_new_static (account, sender_id, sender_name, - is_user); + sender = empathy_contact_new_for_log (account, sender_id, sender_name, + is_user); if (!EMP_STR_EMPTY (sender_avatar_token)) empathy_contact_load_avatar_cache (sender, -- 2.39.2