diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-11-07 14:59:01 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-11-07 14:59:01 +0900 |
commit | 80b0ef75374e0cd0c9b6aa657cbf3e819065da5f (patch) | |
tree | e35eaf830f007894091e3cf64e6b157385eb1030 /src/lib/elementary/elm_widget.h | |
parent | a438e9382c72bfecbfe6d7630e762b2013640c14 (diff) |
elm: Fix make check (code_widget)devs/woohyun/ui_property
elm_code_widget is causing a lot of trouble as it's relying on internal
access to elementary, without being built as part of elementary.so. Many
EAPI symbols are exported that shouldn't need to be, as they are only
internals of elm.
Diffstat (limited to '')
-rw-r--r-- | src/lib/elementary/elm_widget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elementary/elm_widget.h b/src/lib/elementary/elm_widget.h index aa5d11d123..45f5d93629 100644 --- a/src/lib/elementary/elm_widget.h +++ b/src/lib/elementary/elm_widget.h | |||
@@ -811,7 +811,7 @@ _elm_widget_sub_object_redirect_to_top(Evas_Object *obj, Evas_Object *sobj) | |||
811 | 811 | ||
812 | /* Internal hack to mark legacy objects as such before construction. | 812 | /* Internal hack to mark legacy objects as such before construction. |
813 | * No need for TLS: Only UI objects created in the main loop matter. */ | 813 | * No need for TLS: Only UI objects created in the main loop matter. */ |
814 | extern Eina_Bool _elm_legacy_add; | 814 | EAPI Eina_Bool _elm_legacy_add; |
815 | #define elm_legacy_add(k, p, ...) ({ _elm_legacy_add = 1; \ | 815 | #define elm_legacy_add(k, p, ...) ({ _elm_legacy_add = 1; \ |
816 | efl_add(k, p, efl_canvas_object_legacy_ctor(efl_added), ##__VA_ARGS__); }) | 816 | efl_add(k, p, efl_canvas_object_legacy_ctor(efl_added), ##__VA_ARGS__); }) |
817 | 817 | ||