From 77c9c2a9e83163438a58d947f85803cb17537dab Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Tue, 11 Mar 2008 12:22:41 +0000 Subject: Remove useless empathy_contact_run_until_ready and use tp_strdiff instead of strcmp svn path=/trunk/; revision=757 --- libempathy-gtk/empathy-private-chat.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'libempathy-gtk') diff --git a/libempathy-gtk/empathy-private-chat.c b/libempathy-gtk/empathy-private-chat.c index a8b2941aa..9f84c1273 100644 --- a/libempathy-gtk/empathy-private-chat.c +++ b/libempathy-gtk/empathy-private-chat.c @@ -34,6 +34,7 @@ #include #include +#include #include #include @@ -105,10 +106,6 @@ private_chat_constructor (GType type, priv->contact = empathy_contact_factory_get_from_handle (priv->factory, account, tp_chan->handle); - empathy_contact_run_until_ready (priv->contact, - EMPATHY_CONTACT_READY_ID | - EMPATHY_CONTACT_READY_NAME, - NULL); priv->name = g_strdup (empathy_contact_get_name (priv->contact)); @@ -271,7 +268,7 @@ private_chat_contact_updated_cb (EmpathyContact *contact, priv = GET_PRIV (chat); - if (strcmp (priv->name, empathy_contact_get_name (contact)) != 0) { + if (tp_strdiff (priv->name, empathy_contact_get_name (contact))) { g_free (priv->name); priv->name = g_strdup (empathy_contact_get_name (contact)); g_signal_emit_by_name (chat, "name-changed", priv->name); -- cgit v1.2.3