hermet pushed a commit to branch elementary-1.13. http://git.enlightenment.org/core/elementary.git/commit/?id=513c1838238b20cec4907af320435ec81d69b963
commit 513c1838238b20cec4907af320435ec81d69b963 Author: ChunEon Park <[email protected]> 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 c4d2d69..4f27d83 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 --
