From 860b821f007c3c47c8be170f47cfa1e3711442a3 Mon Sep 17 00:00:00 2001 From: Dave Andreoli Date: Fri, 27 May 2016 21:57:04 +0200 Subject: [PATCH] Elm Win legacy: Fix wrong function names This fixes errors from 2 commits: ec464939d9b8e4daabb55fab07e369a7e00cc941 589eae9a8bff9aa160df61656a7faab8bd2b9169 Ji-Youn Park: SPANK! --- src/lib/elementary/elm_win.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/elementary/elm_win.c b/src/lib/elementary/elm_win.c index d2822dc615..f9f0afc2a7 100644 --- a/src/lib/elementary/elm_win.c +++ b/src/lib/elementary/elm_win.c @@ -6068,7 +6068,7 @@ elm_win_conformant_get(const Evas_Object *obj) } EAPI void -elm_win_wm_manual_rotation_done_set(Evas_Object *obj, Eina_Bool set) +elm_win_wm_rotation_manual_rotation_done_set(Evas_Object *obj, Eina_Bool set) { ELM_WIN_CHECK(obj); ELM_WIN_DATA_GET_OR_RETURN(obj, sd); @@ -6078,7 +6078,7 @@ elm_win_wm_manual_rotation_done_set(Evas_Object *obj, Eina_Bool set) } EAPI Eina_Bool -elm_win_wm_manual_rotation_done_get(const Evas_Object *obj) +elm_win_wm_rotation_manual_rotation_done_get(const Evas_Object *obj) { ELM_WIN_CHECK(obj) EINA_FALSE; ELM_WIN_DATA_GET_OR_RETURN(obj, sd, EINA_FALSE); @@ -6088,7 +6088,7 @@ elm_win_wm_manual_rotation_done_get(const Evas_Object *obj) } EAPI void -elm_win_wm_manual_rotation_done_manual(Evas_Object *obj) +elm_win_wm_rotation_manual_rotation_done(Evas_Object *obj) { ELM_WIN_CHECK(obj); ELM_WIN_DATA_GET_OR_RETURN(obj, sd); @@ -6152,7 +6152,7 @@ elm_win_wm_preferred_rotation_set(Evas_Object *obj, int rotation) } EAPI int -elm_win_wm_preferred_rotation_get(const Evas_Object *obj) +elm_win_wm_rotation_preferred_rotation_get(const Evas_Object *obj) { ELM_WIN_CHECK(obj) -1; ELM_WIN_DATA_GET_OR_RETURN(obj, sd, -1);