From afcdc5e957a5d15221b9ede6a62c4dc64e3b7fbf Mon Sep 17 00:00:00 2001 From: jykeon Date: Wed, 8 Mar 2023 11:10:19 +0900 Subject: [PATCH] Fix Build error on elm_win_frontbuffer Change-Id: I4dcf1a681c7800f6801c333b7ed29ed629e35f4a Signed-off-by: jykeon --- src/lib/elementary/efl_ui_win.c | 2 +- src/lib/elementary/elm_win_legacy.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/elementary/efl_ui_win.c b/src/lib/elementary/efl_ui_win.c index 33b4305..e64e6f2 100644 --- a/src/lib/elementary/efl_ui_win.c +++ b/src/lib/elementary/efl_ui_win.c @@ -11583,7 +11583,7 @@ elm_win_use_frontbuffer_set(Evas_Object *obj, Eina_Bool use_frontbuffer) return efl_ui_win_use_frontbuffer_set(obj, use_frontbuffer); } -EAPI const Eina_Bool +EAPI Eina_Bool elm_win_use_frontbuffer_get(const Evas_Object *obj) { return efl_ui_win_use_frontbuffer_get(obj); diff --git a/src/lib/elementary/elm_win_legacy.h b/src/lib/elementary/elm_win_legacy.h index e125661..0d27ca8 100644 --- a/src/lib/elementary/elm_win_legacy.h +++ b/src/lib/elementary/elm_win_legacy.h @@ -2176,7 +2176,7 @@ EAPI void elm_win_use_frontbuffer_set(Evas_Object *obj, Eina_Bool use_frontbuffe * * @ingroup Elm_Win_Group */ -EAPI const Eina_Bool elm_win_use_frontbuffer_get(const Evas_Object *obj); +EAPI Eina_Bool elm_win_use_frontbuffer_get(const Evas_Object *obj); /** * @brief Set the alpha channel state of a window. -- 2.7.4