summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShinwoo Kim <cinoo.kim@samsung.com>2016-12-08 23:21:35 +0900
committerShinwoo Kim <cinoo.kim@samsung.com>2016-12-08 23:22:10 +0900
commit4a8d37195f19c8435c33721fb3fd994783b6a351 (patch)
tree7839c5a31d9fab820727c3c2afc5ca1e57d05df5
parent5a0c03ded16df82f9e1be412220f3a7e0edc25cf (diff)
downloadefl-4a8d37195f19c8435c33721fb3fd994783b6a351.tar.gz
elementary: atspi accepts UTF-8 text
-rw-r--r--src/lib/elementary/elm_atspi_bridge.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/elementary/elm_atspi_bridge.c b/src/lib/elementary/elm_atspi_bridge.c
index 237b47cec2..7d004cd23e 100644
--- a/src/lib/elementary/elm_atspi_bridge.c
+++ b/src/lib/elementary/elm_atspi_bridge.c
@@ -2078,9 +2078,7 @@ _accessible_property_get(const Eldbus_Service_Interface *interface, const char *
ret = elm_interface_atspi_accessible_name_get(obj);
if (!ret)
ret = "";
- char *plain_text = evas_textblock_text_markup_to_utf8(NULL, ret);
eldbus_message_iter_basic_append(iter, 's', ret);
- free(plain_text);
return EINA_TRUE;
}
else if (!strcmp(property, "Description"))