atspi: add text tags filtering

This commit is contained in:
Lukasz Stanislawski 2014-10-09 11:37:35 +02:00 committed by Lukasz Stanislawski
parent e0540ab2ee
commit f7686dfd0e
1 changed files with 3 additions and 0 deletions

View File

@ -5558,6 +5558,9 @@ _elm_widget_elm_interface_atspi_accessible_name_get(Eo *obj EINA_UNUSED, Elm_Wid
{
const char *ret;
ret = elm_object_text_get(obj);
if (!ret) return NULL;
ret = _elm_util_mkup_to_text(ret);
return ret ? strdup(ret) : NULL;
}