[empathy] Rename empathy_contact_new_static to empathy_contact_new_for_log



commit e444ee9b051168bbd591b9eadb03ae5f735e346f
Author: Xavier Claessens <xclaesse gmail com>
Date:   Wed Apr 22 12:16:10 2009 +0200

    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 27f3ff9..fe8cf82 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 0fab904..c10561d 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 6485d00..b74b5e1 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,



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]