From: Gustavo Sverzut Barbieri Date: Fri, 10 Aug 2012 23:43:44 +0000 (-0300) Subject: contacts: expose full name as well, for themes that may want to use it. X-Git-Tag: accepted/2.0alpha/20121205.174825~92 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=40f6cdc011a2ea9d5a4e722173f7a857681ce1d1;p=profile%2Fivi%2Flemolo.git contacts: expose full name as well, for themes that may want to use it. --- diff --git a/dialer/contacts.c b/dialer/contacts.c index b09d12b..783ecea 100644 --- a/dialer/contacts.c +++ b/dialer/contacts.c @@ -676,6 +676,8 @@ static char *_item_label_get(void *data, Evas_Object *obj __UNUSED__, return strdup(c_info->first_name); else if (strcmp(part, "last") == 0) return strdup(c_info->last_name); + else if (strcmp(part, "full") == 0) + return strdup(contact_info_full_name_get(c_info)); ERR("Unexpected part name: %s", part); return NULL;