stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=02bbcabd3f6e1a8946a9b3db8eb1d04dfbbef70c
commit 02bbcabd3f6e1a8946a9b3db8eb1d04dfbbef70c Author: Stefan Schmidt <ste...@osg.samsung.com> Date: Fri Jul 14 14:06:34 2017 +0200 examples: elm_icon: remove no-op deprecated function call for icon lookup The function is deprecated and actually a no-op already. Better make sure we do not promote deprecated functions in our won examples. --- src/examples/elementary/icon_example_01.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/examples/elementary/icon_example_01.c b/src/examples/elementary/icon_example_01.c index 2cf8674b5f..17b6b661d7 100644 --- a/src/examples/elementary/icon_example_01.c +++ b/src/examples/elementary/icon_example_01.c @@ -15,7 +15,6 @@ elm_main(int argc EINA_UNUSED, char **argv EINA_UNUSED) elm_win_autodel_set(win, EINA_TRUE); icon = elm_icon_add(win); - elm_icon_order_lookup_set(icon, ELM_ICON_LOOKUP_THEME_FDO); elm_icon_standard_set(icon, "home"); path = NULL; --