summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChunEon Park <hermet@hermet.pe.kr>2015-03-13 17:42:26 +0900
committerChunEon Park <hermet@hermet.pe.kr>2015-03-13 17:46:00 +0900
commit841fcdfb18a414a7381910bcbb0b0ef4807bc5c2 (patch)
tree4827ddf17944c4129358a93982d486b41eae823f
parent8ee8864bdc8615602e7ed45341092d26e5e76627 (diff)
downloadelementary-841fcdfb18a414a7381910bcbb0b0ef4807bc5c2.tar.gz
widget: fix the abi break.
Widget type string should be all lower-cases! This acutally was caused in 7b10fdb8f39c3b36f575dd22d26a1efe6ecd28ec @fix
-rw-r--r--src/lib/elm_widget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elm_widget.c b/src/lib/elm_widget.c
index 39e3c3240..e00f021b7 100644
--- a/src/lib/elm_widget.c
+++ b/src/lib/elm_widget.c
@@ -3684,7 +3684,7 @@ elm_widget_type_get(const Evas_Object *obj)
{
API_ENTRY return NULL;
- return eo_class_name_get(eo_class_get(obj));
+ return evas_object_type_get(obj);
}
EAPI Eina_Bool