From 67b7042c08ac8bcc8ecb811f66e3ea2590648e8d Mon Sep 17 00:00:00 2001 From: WooHyun Jung Date: Wed, 5 Sep 2012 02:37:47 +0000 Subject: [PATCH] elementary/elm_widget : evas_object_smart_interface_get should be tried with SMART object only. Before this commit, some applications printed "evas_debug_magic_wrong". SVN revision: 76157 --- legacy/elementary/src/lib/elm_widget.c | 1 + 1 file changed, 1 insertion(+) diff --git a/legacy/elementary/src/lib/elm_widget.c b/legacy/elementary/src/lib/elm_widget.c index b27b461521..c94b3f7494 100644 --- a/legacy/elementary/src/lib/elm_widget.c +++ b/legacy/elementary/src/lib/elm_widget.c @@ -48,6 +48,7 @@ _is_focusable(Evas_Object *obj) static inline Eina_Bool _elm_scrollable_is(const Evas_Object *obj) { + INTERNAL_ENTRY EINA_FALSE; return !!evas_object_smart_interface_get(obj, ELM_SCROLLABLE_IFACE_NAME); }