From 8147afcf72fb4ec0a9a275983d362d236093d644 Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Sun, 27 Apr 2014 02:40:45 +0900 Subject: [PATCH] toolbar: Fixed wrong edje api usage for elm objects. This bug was introduced by the commit 4c8677166163316468da56c53b203ac572085c40 this January. @fix --- legacy/elementary/src/lib/elm_toolbar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/elementary/src/lib/elm_toolbar.c b/legacy/elementary/src/lib/elm_toolbar.c index 340a1e89ab..455e94a206 100644 --- a/legacy/elementary/src/lib/elm_toolbar.c +++ b/legacy/elementary/src/lib/elm_toolbar.c @@ -934,7 +934,7 @@ _item_disable_hook(Elm_Object_Item *it) edje_object_signal_emit(VIEW(toolbar_it), emission, "elm"); if (toolbar_it->icon) - edje_object_signal_emit(toolbar_it->icon, emission, "elm"); + elm_widget_signal_emit(toolbar_it->icon, emission, "elm"); _resize_cb(WIDGET(toolbar_it), NULL, NULL, NULL); }