diff options
author | Jonny Lamb <jonnylamb@gnome.org> | 2011-05-11 17:39:36 +0800 |
---|---|---|
committer | Jonny Lamb <jonnylamb@gnome.org> | 2011-05-11 17:39:36 +0800 |
commit | acde6c67cdd3c3684d564bb65f2628fdf1bec27a (patch) | |
tree | dbc7fc24e476afda361d63df28682a3a7cf7a7cd /libempathy/empathy-contact.c | |
parent | 50daa9eb6a529ad3d78448b134e4a76438124696 (diff) | |
download | gsoc2013-empathy-acde6c67cdd3c3684d564bb65f2628fdf1bec27a.tar gsoc2013-empathy-acde6c67cdd3c3684d564bb65f2628fdf1bec27a.tar.gz gsoc2013-empathy-acde6c67cdd3c3684d564bb65f2628fdf1bec27a.tar.bz2 gsoc2013-empathy-acde6c67cdd3c3684d564bb65f2628fdf1bec27a.tar.lz gsoc2013-empathy-acde6c67cdd3c3684d564bb65f2628fdf1bec27a.tar.xz gsoc2013-empathy-acde6c67cdd3c3684d564bb65f2628fdf1bec27a.tar.zst gsoc2013-empathy-acde6c67cdd3c3684d564bb65f2628fdf1bec27a.zip |
contact: fix typo when creating new contact from logger entity
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
Diffstat (limited to 'libempathy/empathy-contact.c')
-rw-r--r-- | libempathy/empathy-contact.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy/empathy-contact.c b/libempathy/empathy-contact.c index 620c479e2..f3e200e27 100644 --- a/libempathy/empathy-contact.c +++ b/libempathy/empathy-contact.c @@ -653,8 +653,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); |