[empathy] remove empathy_tp_contact_factory_set_avatar



commit ab5053cba9d2cea3610916eff7aa88b4f219a22c
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date:   Thu Apr 1 12:16:36 2010 +0200

    remove empathy_tp_contact_factory_set_avatar
    
    This is not needed any more.

 libempathy/empathy-tp-contact-factory.c |   61 -------------------------------
 libempathy/empathy-tp-contact-factory.h |    4 --
 2 files changed, 0 insertions(+), 65 deletions(-)
---
diff --git a/libempathy/empathy-tp-contact-factory.c b/libempathy/empathy-tp-contact-factory.c
index 4d5a729..7139ae7 100644
--- a/libempathy/empathy-tp-contact-factory.c
+++ b/libempathy/empathy-tp-contact-factory.c
@@ -146,29 +146,6 @@ tp_contact_factory_set_location_cb (TpConnection *tp_conn,
 }
 
 static void
-tp_contact_factory_set_avatar_cb (TpConnection *connection,
-				  const gchar  *token,
-				  const GError *error,
-				  gpointer      user_data,
-				  GObject      *tp_factory)
-{
-	if (error) {
-		DEBUG ("Error: %s", error->message);
-	}
-}
-
-static void
-tp_contact_factory_clear_avatar_cb (TpConnection *connection,
-				    const GError *error,
-				    gpointer      user_data,
-				    GObject      *tp_factory)
-{
-	if (error) {
-		DEBUG ("Error: %s", error->message);
-	}
-}
-
-static void
 tp_contact_factory_avatar_retrieved_cb (TpConnection *connection,
 					guint         handle,
 					const gchar  *token,
@@ -1278,44 +1255,6 @@ empathy_tp_contact_factory_set_alias (EmpathyTpContactFactory *tp_factory,
 }
 
 void
-empathy_tp_contact_factory_set_avatar (EmpathyTpContactFactory *tp_factory,
-				       const gchar             *data,
-				       gsize                    size,
-				       const gchar             *mime_type)
-{
-	EmpathyTpContactFactoryPriv *priv = GET_PRIV (tp_factory);
-
-	g_return_if_fail (EMPATHY_IS_TP_CONTACT_FACTORY (tp_factory));
-
-	if (data && size > 0 && size < G_MAXUINT) {
-		GArray avatar;
-
-		avatar.data = (gchar *) data;
-		avatar.len = size;
-
-		DEBUG ("Setting avatar on connection %s",
-			tp_proxy_get_object_path (TP_PROXY (priv->connection)));
-
-		tp_cli_connection_interface_avatars_call_set_avatar (priv->connection,
-								     -1,
-								     &avatar,
-								     mime_type,
-								     tp_contact_factory_set_avatar_cb,
-								     NULL, NULL,
-								     G_OBJECT (tp_factory));
-	} else {
-		DEBUG ("Clearing avatar on connection %s",
-			tp_proxy_get_object_path (TP_PROXY (priv->connection)));
-
-		tp_cli_connection_interface_avatars_call_clear_avatar (priv->connection,
-								       -1,
-								       tp_contact_factory_clear_avatar_cb,
-								       NULL, NULL,
-								       G_OBJECT (tp_factory));
-	}
-}
-
-void
 empathy_tp_contact_factory_set_location (EmpathyTpContactFactory *tp_factory,
 					 GHashTable              *location)
 {
diff --git a/libempathy/empathy-tp-contact-factory.h b/libempathy/empathy-tp-contact-factory.h
index ed11bf7..4cce6ec 100644
--- a/libempathy/empathy-tp-contact-factory.h
+++ b/libempathy/empathy-tp-contact-factory.h
@@ -104,10 +104,6 @@ void                     empathy_tp_contact_factory_get_from_handle  (EmpathyTpC
 void                     empathy_tp_contact_factory_set_alias        (EmpathyTpContactFactory *tp_factory,
 								      EmpathyContact          *contact,
 								      const gchar             *alias);
-void                     empathy_tp_contact_factory_set_avatar       (EmpathyTpContactFactory *tp_factory,
-								      const gchar             *data,
-								      gsize                    size,
-								      const gchar             *mime_type);
 void                     empathy_tp_contact_factory_set_location     (EmpathyTpContactFactory *tp_factory,
 								      GHashTable              *location);
 G_END_DECLS



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