summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hollerbach <marcel-hollerbach@t-online.de>2017-04-19 14:10:43 +0200
committerMarcel Hollerbach <marcel-hollerbach@t-online.de>2017-04-20 14:38:59 +0200
commit8afa54f1799355717b88dae55c42ee971530918b (patch)
tree2ffd29d3b63dbd8f21d3f3a8239fcbffdda04e6c
parentc867ab64e04bdec5a9298a97e3e4a742980af076 (diff)
downloadefl-8afa54f1799355717b88dae55c42ee971530918b.tar.gz
elementary: fix focus tests
-rw-r--r--src/Makefile_Elementary.am2
-rw-r--r--src/tests/elementary/focus_test.eo4
-rw-r--r--src/tests/elementary/focus_test_sub_main.eo6
3 files changed, 6 insertions, 6 deletions
diff --git a/src/Makefile_Elementary.am b/src/Makefile_Elementary.am
index c57b83095b..a3ef0b3d3a 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 7417cace1c..fa3f3e25ae 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 3c417cddf0..39197aef5e 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
+}