elm: Fix use of Efl.Access APIs

See also 7d397c9f19

Thanks @stefan for the first fix patch, I simply failed to push this one
early enough.
This commit is contained in:
Jean-Philippe Andre 2017-09-12 19:42:26 +09:00
parent e4a440797b
commit 0885d0c405
3 changed files with 5 additions and 5 deletions

View File

@ -153,7 +153,7 @@ EAPI void register_object(v8::Handle<v8::Object> global, v8::Isolate* isolate);
EAPI void register_elm_atspi_app_object(v8::Handle<v8::Object> global, v8::Isolate* isolate);
EAPI void register_elm_interface_atspi_accessible(v8::Handle<v8::Object> global, v8::Isolate* isolate);
EAPI void register_elm_interface_atspi_action(v8::Handle<v8::Object> global, v8::Isolate* isolate);
EAPI void register_elm_interface_atspi_component(v8::Handle<v8::Object> global, v8::Isolate* isolate);
EAPI void register_efl_access_component(v8::Handle<v8::Object> global, v8::Isolate* isolate);
EAPI void register_elm_interface_atspi_editable_text(v8::Handle<v8::Object> global, v8::Isolate* isolate);
EAPI void register_elm_interface_atspi_image(v8::Handle<v8::Object> global, v8::Isolate* isolate);
EAPI void register_elm_interface_atspi_selection(v8::Handle<v8::Object> global, v8::Isolate* isolate);
@ -387,7 +387,7 @@ EAPI void init(v8::Handle<v8::Object> exports)
// ::register_elm_interface_atspi_accessible(exports, v8::Isolate::GetCurrent());
// ::register_elm_interface_atspi_action(exports, v8::Isolate::GetCurrent());
// ::register_elm_interface_atspi_component(exports, v8::Isolate::GetCurrent());
// ::register_efl_access_component(exports, v8::Isolate::GetCurrent());
// ::register_elm_interface_atspi_editable_text(exports, v8::Isolate::GetCurrent());
// ::register_elm_interface_atspi_image(exports, v8::Isolate::GetCurrent());
// ::register_elm_interface_atspi_selection(exports, v8::Isolate::GetCurrent());

View File

@ -37,7 +37,7 @@
EAPI void register_elm_atspi_app_object(v8::Handle<v8::Object> global, v8::Isolate* isolate);
EAPI void register_elm_interface_atspi_accessible(v8::Handle<v8::Object> global, v8::Isolate* isolate);
EAPI void register_elm_interface_atspi_action(v8::Handle<v8::Object> global, v8::Isolate* isolate);
EAPI void register_elm_interface_atspi_component(v8::Handle<v8::Object> global, v8::Isolate* isolate);
EAPI void register_efl_access_component(v8::Handle<v8::Object> global, v8::Isolate* isolate);
EAPI void register_elm_interface_atspi_text_editable(v8::Handle<v8::Object> global, v8::Isolate* isolate);
EAPI void register_elm_interface_atspi_image(v8::Handle<v8::Object> global, v8::Isolate* isolate);
EAPI void register_elm_interface_atspi_selection(v8::Handle<v8::Object> global, v8::Isolate* isolate);
@ -202,7 +202,7 @@ void init(v8::Handle<v8::Object> exports)
elm::register_index(exports, v8::Isolate::GetCurrent());
::register_elm_interface_atspi_accessible(exports, v8::Isolate::GetCurrent());
::register_elm_interface_atspi_action(exports, v8::Isolate::GetCurrent());
::register_elm_interface_atspi_component(exports, v8::Isolate::GetCurrent());
::register_efl_access_component(exports, v8::Isolate::GetCurrent());
::register_elm_interface_atspi_text_editable(exports, v8::Isolate::GetCurrent());
::register_elm_interface_atspi_image(exports, v8::Isolate::GetCurrent());
::register_elm_interface_atspi_selection(exports, v8::Isolate::GetCurrent());

View File

@ -3,7 +3,7 @@
#endif
#define ELM_INTERFACE_ATSPI_ACCESSIBLE_PROTECTED
#define ELM_INTERFACE_ATSPI_COMPONENT_PROTECTED
#define EFL_ACCESS_COMPONENT_PROTECTED
#define ELM_INTERFACE_ATSPI_ACTION_PROTECTED
#include <Elementary.h>
#include "elm_suite.h"