bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=8afa54f1799355717b88dae55c42ee971530918b
commit 8afa54f1799355717b88dae55c42ee971530918b Author: Marcel Hollerbach <[email protected]> Date: Wed Apr 19 14:10:43 2017 +0200 elementary: fix focus tests --- src/Makefile_Elementary.am | 2 +- src/tests/elementary/focus_test.eo | 4 ++-- src/tests/elementary/focus_test_sub_main.eo | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Makefile_Elementary.am b/src/Makefile_Elementary.am index c57b830..a3ef0b3 100644 --- a/src/Makefile_Elementary.am +++ b/src/Makefile_Elementary.am @@ -1344,7 +1344,7 @@ tests_elementary_elm_suite_SOURCES = \ tests/elementary/elm_test_focus.c \ tests/elementary/elm_test_focus_sub.c -tests/elementary/tests_elementary_elm_suite-elm_test_focus.$(OBJEXT): tests/elementary/focus_test.eo.c tests/elementary/focus_test.eo.h +tests/elementary/tests_elementary_elm_suite-elm_test_focus_common.$(OBJEXT): tests/elementary/focus_test.eo.c tests/elementary/focus_test.eo.h tests/elementary/tests_elementary_elm_suite-elm_test_focus_sub.$(OBJEXT): tests/elementary/focus_test_sub_main.eo.c tests/elementary/focus_test_sub_main.eo.h diff --git a/src/tests/elementary/focus_test.eo b/src/tests/elementary/focus_test.eo index 7417cac..fa3f3e2 100644 --- a/src/tests/elementary/focus_test.eo +++ b/src/tests/elementary/focus_test.eo @@ -9,6 +9,6 @@ class Focus.Test(Efl.Object, Efl.Ui.Focus.Object) { implements { Efl.Object.constructor; Efl.Ui.Focus.Object.geometry_get; - Efl.Ui.Focus.Object.focus.set; + Efl.Ui.Focus.Object.focus { set; } } -} \ No newline at end of file +} diff --git a/src/tests/elementary/focus_test_sub_main.eo b/src/tests/elementary/focus_test_sub_main.eo index 3c417cd..39197ae 100644 --- a/src/tests/elementary/focus_test_sub_main.eo +++ b/src/tests/elementary/focus_test_sub_main.eo @@ -1,7 +1,7 @@ class Focus.Test.Sub.Main(Efl.Object, Efl.Ui.Focus.User, Efl.Ui.Focus.Object, Efl.Ui.Focus.Manager) { implements { - Efl.Ui.Focus.User.manager.get; - Efl.Ui.Focus.User.parent.get; + Efl.Ui.Focus.User.manager { get; } + Efl.Ui.Focus.User.parent { get; } Efl.Ui.Focus.Object.geometry_get; } -} \ No newline at end of file +} --
