[empathy] Make empathy_contact_load_avatar_cache() private
- From: Philip Withnall <pwithnall src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [empathy] Make empathy_contact_load_avatar_cache() private
- Date: Tue, 24 Aug 2010 09:55:56 +0000 (UTC)
commit c71c43c5756061e2e3d877aa47078140b518e3fa
Author: Philip Withnall <philip withnall collabora co uk>
Date: Mon Aug 23 12:23:18 2010 +0100
Make empathy_contact_load_avatar_cache() private
libempathy/empathy-contact.c | 10 ++++++----
libempathy/empathy-contact.h | 2 --
2 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/libempathy/empathy-contact.c b/libempathy/empathy-contact.c
index 718274a..7b7b55c 100644
--- a/libempathy/empathy-contact.c
+++ b/libempathy/empathy-contact.c
@@ -88,6 +88,8 @@ static void set_capabilities_from_tp_caps (EmpathyContact *self,
static void contact_set_avatar (EmpathyContact *contact,
EmpathyAvatar *avatar);
static void contact_set_avatar_from_tp_contact (EmpathyContact *contact);
+static gboolean contact_load_avatar_cache (EmpathyContact *contact,
+ const gchar *token);
G_DEFINE_TYPE (EmpathyContact, empathy_contact, G_TYPE_OBJECT);
@@ -530,7 +532,7 @@ empathy_contact_from_tpl_contact (TpAccount *account,
NULL);
if (!EMP_STR_EMPTY (tpl_entity_get_avatar_token (tpl_entity)))
- empathy_contact_load_avatar_cache (retval,
+ contact_load_avatar_cache (retval,
tpl_entity_get_avatar_token (tpl_entity));
return retval;
@@ -1168,9 +1170,9 @@ contact_get_avatar_filename (EmpathyContact *contact,
return avatar_file;
}
-gboolean
-empathy_contact_load_avatar_cache (EmpathyContact *contact,
- const gchar *token)
+static gboolean
+contact_load_avatar_cache (EmpathyContact *contact,
+ const gchar *token)
{
EmpathyAvatar *avatar = NULL;
gchar *filename;
diff --git a/libempathy/empathy-contact.h b/libempathy/empathy-contact.h
index 1117d7f..b6d5753 100644
--- a/libempathy/empathy-contact.h
+++ b/libempathy/empathy-contact.h
@@ -109,8 +109,6 @@ gboolean empathy_contact_can_voip_audio (EmpathyContact *contact);
gboolean empathy_contact_can_voip_video (EmpathyContact *contact);
gboolean empathy_contact_can_send_files (EmpathyContact *contact);
gboolean empathy_contact_can_use_rfb_stream_tube (EmpathyContact *contact);
-gboolean empathy_contact_load_avatar_cache (EmpathyContact *contact,
- const gchar *token);
#define EMPATHY_TYPE_AVATAR (empathy_avatar_get_type ())
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]