hermet pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=841fcdfb18a414a7381910bcbb0b0ef4807bc5c2
commit 841fcdfb18a414a7381910bcbb0b0ef4807bc5c2 Author: ChunEon Park <her...@hermet.pe.kr> Date: Fri Mar 13 17:42:26 2015 +0900 widget: fix the abi break. Widget type string should be all lower-cases! This acutally was caused in 7b10fdb8f39c3b36f575dd22d26a1efe6ecd28ec @fix --- src/lib/elm_widget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elm_widget.c b/src/lib/elm_widget.c index 39e3c32..e00f021 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 --