tasn pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=9976ee52a0f3c857e913b420a16f5718b36ed177
commit 9976ee52a0f3c857e913b420a16f5718b36ed177 Author: Tom Hacohen <[email protected]> Date: Thu Oct 9 12:27:59 2014 +0100 Elm win: Rename duplicate eo property wm_manual_rotation_done. This has to be renamed otherwise it clashes for bindings. --- src/lib/elm_win.c | 2 +- src/lib/elm_win.eo | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c index ed6a2e7..9d469f6 100644 --- a/src/lib/elm_win.c +++ b/src/lib/elm_win.c @@ -4432,7 +4432,7 @@ _elm_win_wm_manual_rotation_done_get(Eo *obj EINA_UNUSED, Elm_Win_Data *sd) } EOLIAN static void -_elm_win_wm_manual_rotation_done(Eo *obj EINA_UNUSED, Elm_Win_Data *sd) +_elm_win_wm_manual_rotation_done_manual(Eo *obj EINA_UNUSED, Elm_Win_Data *sd) { if (!sd->wm_rot.use) return; ecore_evas_wm_rotation_manual_rotation_done(sd->ee); diff --git a/src/lib/elm_win.eo b/src/lib/elm_win.eo index 7084ab1..dc51063 100644 --- a/src/lib/elm_win.eo +++ b/src/lib/elm_win.eo @@ -1191,7 +1191,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window, @in Elm_Win_Type type; } } - wm_manual_rotation_done { + wm_manual_rotation_done_manual { /*@ To notify the rotation done to WM manually. --
