discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=996671ce263ba40cecf5229aefadc69a58420f6e

commit 996671ce263ba40cecf5229aefadc69a58420f6e
Author: Mike Blumenkrantz <[email protected]>
Date:   Wed Feb 14 21:14:52 2018 -0500

    elm_map: rotate -> map_rotate
---
 src/lib/elementary/elm_map.c  | 4 ++--
 src/lib/elementary/elm_map.eo | 4 +++-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/src/lib/elementary/elm_map.c b/src/lib/elementary/elm_map.c
index e0ae1b889c..7bd9350d0e 100644
--- a/src/lib/elementary/elm_map.c
+++ b/src/lib/elementary/elm_map.c
@@ -4452,7 +4452,7 @@ _elm_map_paused_get(Eo *obj EINA_UNUSED, Elm_Map_Data *sd)
 }
 
 EOLIAN static void
-_elm_map_rotate_set(Eo *obj EINA_UNUSED, Elm_Map_Data *sd, double degree, 
Evas_Coord cx, Evas_Coord cy)
+_elm_map_map_rotate_set(Eo *obj EINA_UNUSED, Elm_Map_Data *sd, double degree, 
Evas_Coord cx, Evas_Coord cy)
 {
    sd->rotate.d = degree;
    sd->rotate.cx = cx;
@@ -4462,7 +4462,7 @@ _elm_map_rotate_set(Eo *obj EINA_UNUSED, Elm_Map_Data 
*sd, double degree, Evas_C
 }
 
 EOLIAN static void
-_elm_map_rotate_get(Eo *obj EINA_UNUSED, Elm_Map_Data *sd, double *degree, 
Evas_Coord *cx, Evas_Coord *cy)
+_elm_map_map_rotate_get(Eo *obj EINA_UNUSED, Elm_Map_Data *sd, double *degree, 
Evas_Coord *cx, Evas_Coord *cy)
 {
    if (degree) *degree = sd->rotate.d;
    if (cx) *cx = sd->rotate.cx;
diff --git a/src/lib/elementary/elm_map.eo b/src/lib/elementary/elm_map.eo
index 4f494f562d..04f250b29f 100644
--- a/src/lib/elementary/elm_map.eo
+++ b/src/lib/elementary/elm_map.eo
@@ -93,12 +93,14 @@ class Elm.Map (Efl.Ui.Widget, Elm.Interface_Scrollable,
             zoom: int(-1); [[Minimum zoom value to be used.]]
          }
       }
-      @property rotate {
+      @property map_rotate {
          set {
             [[Rotate the map.]]
+            legacy: elm_map_rotate_set;
          }
          get {
             [[Get the rotate degree of the map.]]
+            legacy: elm_map_rotate_get;
          }
          values {
             degree: double; [[Angle from 0.0 to 360.0 to rotate around Z 
axis.]]

-- 


Reply via email to