diff options
author | Tom Hacohen <tom@stosb.com> | 2014-10-09 12:27:59 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2014-10-09 12:28:34 +0100 |
commit | 9976ee52a0f3c857e913b420a16f5718b36ed177 (patch) | |
tree | 96560be5d8ac026a4c22e1869274830ca1aefca7 /src/lib | |
parent | c16b682f091890c56e61b3ac0b15cc8770b53521 (diff) |
Elm win: Rename duplicate eo property wm_manual_rotation_done.
This has to be renamed otherwise it clashes for bindings.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/elm_win.c | 2 | ||||
-rw-r--r-- | 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 ed6a2e71f..9d469f67c 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) | |||
4432 | } | 4432 | } |
4433 | 4433 | ||
4434 | EOLIAN static void | 4434 | EOLIAN static void |
4435 | _elm_win_wm_manual_rotation_done(Eo *obj EINA_UNUSED, Elm_Win_Data *sd) | 4435 | _elm_win_wm_manual_rotation_done_manual(Eo *obj EINA_UNUSED, Elm_Win_Data *sd) |
4436 | { | 4436 | { |
4437 | if (!sd->wm_rot.use) return; | 4437 | if (!sd->wm_rot.use) return; |
4438 | ecore_evas_wm_rotation_manual_rotation_done(sd->ee); | 4438 | ecore_evas_wm_rotation_manual_rotation_done(sd->ee); |
diff --git a/src/lib/elm_win.eo b/src/lib/elm_win.eo index 7084ab159..dc51063e2 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, | |||
1191 | @in Elm_Win_Type type; | 1191 | @in Elm_Win_Type type; |
1192 | } | 1192 | } |
1193 | } | 1193 | } |
1194 | wm_manual_rotation_done { | 1194 | wm_manual_rotation_done_manual { |
1195 | /*@ | 1195 | /*@ |
1196 | To notify the rotation done to WM manually. | 1196 | To notify the rotation done to WM manually. |
1197 | 1197 | ||