From 69daf53a94c6db7200ba3b346242792a984f04ef Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Thu, 7 Mar 2019 10:57:03 -0500 Subject: [PATCH] elm_win: attempt to fix legacy header I don't know what's going on here and I don't want to know. Reviewed-by: Cedric BAIL Differential Revision: https://phab.enlightenment.org/D8231 --- src/lib/elementary/elm_win_eo.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/lib/elementary/elm_win_eo.h b/src/lib/elementary/elm_win_eo.h index 4d3daa8884..51eaee9010 100644 --- a/src/lib/elementary/elm_win_eo.h +++ b/src/lib/elementary/elm_win_eo.h @@ -1,3 +1,6 @@ +#ifndef ELM_WIN_EO_H +# define ELM_WIN_EO_H + /** * @ingroup Elm_Win * @@ -8,7 +11,7 @@ EAPI void elm_win_autodel_set(Evas_Object *obj, Eina_Bool autodel); EAPI Eina_Bool elm_win_autodel_get(const Evas_Object *obj); - +#if defined (EFL_EO_API_SUPPORT) && defined (EFL_BETA_API_SUPPORT) /** * @brief Set the window's autodel state. * @@ -57,3 +60,6 @@ efl_ui_win_autodel_get(const Efl_Ui_Win *obj) /** * @} */ +#endif + +#endif