Elm Win legacy: Fix wrong function names

This fixes errors from 2 commits:
ec464939d9
589eae9a8b

Ji-Youn Park: SPANK!
This commit is contained in:
Davide Andreoli 2016-05-27 21:57:04 +02:00
parent 3c50101f73
commit 860b821f00
1 changed files with 4 additions and 4 deletions

View File

@ -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);