tests: fix build after elm atspi renaming

Renamed but make check not taken into account.
This commit is contained in:
Stefan Schmidt 2017-09-12 16:01:44 +02:00
parent 50149e95cd
commit 7d397c9f19
2 changed files with 4 additions and 4 deletions

View File

@ -35,7 +35,7 @@ START_TEST (elm_atspi_interfaces_check)
button = elm_button_add(win);
ck_assert(efl_isa(button, ELM_INTERFACE_ATSPI_ACCESSIBLE_MIXIN));
ck_assert(efl_isa(button, ELM_INTERFACE_ATSPI_COMPONENT_MIXIN));
ck_assert(efl_isa(button, EFL_ACCESS_COMPONENT_MIXIN));
ck_assert(efl_isa(button, ELM_INTERFACE_ATSPI_ACTION_MIXIN));
elm_shutdown();

View File

@ -3,7 +3,7 @@
#endif
#define ELM_INTERFACE_ATSPI_ACCESSIBLE_PROTECTED
#define ELM_INTERFACE_ATSPI_COMPONENT_PROTECTED
#define EFL_ACCESS_COMPONENT_PROTECTED
#include <Elementary.h>
#ifdef HAVE_ELEMENTARY_X
# include <Ecore_X.h>
@ -86,7 +86,7 @@ START_TEST (elm_atspi_component_position)
Eo *win = elm_win_add(NULL, "win", ELM_WIN_BASIC);
ret = elm_interface_atspi_component_position_set(win, EINA_TRUE, 45, 45);
ret = efl_access_component_position_set(win, EINA_TRUE, 45, 45);
ck_assert(ret == EINA_TRUE);
Ecore_Evas *ee = ecore_evas_ecore_evas_get(evas_object_evas_get(win));
@ -109,7 +109,7 @@ START_TEST (elm_atspi_component_size)
Eo *win = elm_win_add(NULL, "win", ELM_WIN_BASIC);
evas_object_resize(win, 50, 50);
ret = elm_interface_atspi_component_size_set(win, 100, 100);
ret = efl_access_component_size_set(win, 100, 100);
ck_assert(ret == EINA_TRUE);
evas_object_geometry_get(win, NULL, NULL, &w, &h);