projects
/
profile
/
mobile
/
apps
/
native
/
call-ui.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0b79a3b
)
TizenRefApp-7641 Accept call options improperly displayed during call with unsaved...
55/99055/1
author
Igor Olshevskyi
<i.olshevskyi@samsung.com>
Mon, 21 Nov 2016 17:25:07 +0000
(19:25 +0200)
committer
Igor Olshevskyi
<i.olshevskyi@samsung.com>
Mon, 21 Nov 2016 17:25:07 +0000
(19:25 +0200)
Change-Id: I800757cf6464310d5a2151a06e218426580043ee
src/callui-view-elements.c
patch
|
blob
|
history
diff --git
a/src/callui-view-elements.c
b/src/callui-view-elements.c
index
d47e41a
..
f6d5360
100755
(executable)
--- a/
src/callui-view-elements.c
+++ b/
src/callui-view-elements.c
@@
-365,12
+365,8
@@
static char *__callui_gl_second_call_option_label_get(void *data, Evas_Object *o
CALLUI_RETURN_VALUE_IF_FAIL(part, NULL);
CALLUI_RETURN_VALUE_IF_FAIL(data, NULL);
if (strcmp(part, "elm.text") == 0) {
- char *markup_txt = NULL;
callui_sec_call_popup_data_t *item_data = (callui_sec_call_popup_data_t *)data;
- if (strlen(item_data->option_msg) > 0) {
- markup_txt = evas_textblock_text_utf8_to_markup(NULL, item_data->option_msg);
- }
- return markup_txt;
+ return strdup(item_data->option_msg);
} else {
return NULL;
}