diff options
author | Lukasz Stanislawski <l.stanislaws@samsung.com> | 2017-09-19 11:19:21 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-09-19 11:36:28 +0900 |
commit | fcbdea364eb439d2708f13f781fe1a23e6311d05 (patch) | |
tree | 720d8c0b7400efb7224afd1f67ab3bb85148222b /src/tests/elementary | |
parent | 3e6cc83369a269172deffe0ec8c23152880cd246 (diff) | |
download | efl-fcbdea364eb439d2708f13f781fe1a23e6311d05.tar.gz |
elm: rename Elm.Interface.Atspi_Action => Efl.Access.Action
Reviewers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D5166
Diffstat (limited to 'src/tests/elementary')
-rw-r--r-- | src/tests/elementary/elm_test_button.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/elementary/elm_test_button.c b/src/tests/elementary/elm_test_button.c index 16c72591a1..a07abc41c2 100644 --- a/src/tests/elementary/elm_test_button.c +++ b/src/tests/elementary/elm_test_button.c @@ -4,7 +4,7 @@ #define ELM_INTERFACE_ATSPI_ACCESSIBLE_PROTECTED #define EFL_ACCESS_COMPONENT_PROTECTED -#define ELM_INTERFACE_ATSPI_ACTION_PROTECTED +#define EFL_ACCESS_ACTION_PROTECTED #include <Elementary.h> #include "elm_suite.h" @@ -36,7 +36,7 @@ START_TEST (elm_atspi_interfaces_check) ck_assert(efl_isa(button, ELM_INTERFACE_ATSPI_ACCESSIBLE_MIXIN)); ck_assert(efl_isa(button, EFL_ACCESS_COMPONENT_MIXIN)); - ck_assert(efl_isa(button, ELM_INTERFACE_ATSPI_ACTION_MIXIN)); + ck_assert(efl_isa(button, EFL_ACCESS_ACTION_MIXIN)); elm_shutdown(); } |