aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonny Lamb <jonnylamb@gnome.org>2011-05-11 17:39:36 +0800
committerJonny Lamb <jonnylamb@gnome.org>2011-05-11 17:43:24 +0800
commitf4e2fc16b56fb94b896014692e5bf0eba402ffe3 (patch)
tree011abcbab705cc0db85deb6219a2661da70fb23f
parent0193692dea69b8223045d5d91918c4e779125874 (diff)
downloadgsoc2013-empathy-f4e2fc16b56fb94b896014692e5bf0eba402ffe3.tar
gsoc2013-empathy-f4e2fc16b56fb94b896014692e5bf0eba402ffe3.tar.gz
gsoc2013-empathy-f4e2fc16b56fb94b896014692e5bf0eba402ffe3.tar.bz2
gsoc2013-empathy-f4e2fc16b56fb94b896014692e5bf0eba402ffe3.tar.lz
gsoc2013-empathy-f4e2fc16b56fb94b896014692e5bf0eba402ffe3.tar.xz
gsoc2013-empathy-f4e2fc16b56fb94b896014692e5bf0eba402ffe3.tar.zst
gsoc2013-empathy-f4e2fc16b56fb94b896014692e5bf0eba402ffe3.zip
contact: fix typo when creating new contact from logger entity
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
-rw-r--r--libempathy/empathy-contact.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy/empathy-contact.c b/libempathy/empathy-contact.c
index 3706658fa..76b418651 100644
--- a/libempathy/empathy-contact.c
+++ b/libempathy/empathy-contact.c
@@ -628,8 +628,8 @@ empathy_contact_from_tpl_contact (TpAccount *account,
is_user = (TPL_ENTITY_SELF == tpl_entity_get_entity_type (tpl_entity));
retval = g_object_new (EMPATHY_TYPE_CONTACT,
- "id", tpl_entity_get_alias (tpl_entity),
- "alias", tpl_entity_get_identifier (tpl_entity),
+ "id", tpl_entity_get_identifier (tpl_entity),
+ "alias", tpl_entity_get_alias (tpl_entity),
"account", account,
"is-user", is_user,
NULL);