jackdanielz pushed a commit to branch master.

commit f4ee74ee7c485d32a2ec57ea74966f0d3211c21b
Author: Daniel Zaoui <[email protected]>
Date:   Thu Aug 8 16:12:03 2013 +0300

    Gesture Layer: fix typo on Eo op
---
 src/lib/elm_gesture_layer.c    | 8 ++++----
 src/lib/elm_gesture_layer_eo.h | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/lib/elm_gesture_layer.c b/src/lib/elm_gesture_layer.c
index 3332fe3..5b90f64 100644
--- a/src/lib/elm_gesture_layer.c
+++ b/src/lib/elm_gesture_layer.c
@@ -4333,8 +4333,8 @@ _class_constructor(Eo_Class *klass)
         
EO_OP_FUNC(ELM_OBJ_GESTURE_LAYER_ID(ELM_OBJ_GESTURE_LAYER_SUB_ID_ROTATE_STEP_SET),
 _rotate_step_set),
         
EO_OP_FUNC(ELM_OBJ_GESTURE_LAYER_ID(ELM_OBJ_GESTURE_LAYER_SUB_ID_ATTACH), 
_attach),
         
EO_OP_FUNC(ELM_OBJ_GESTURE_LAYER_ID(ELM_OBJ_GESTURE_LAYER_SUB_ID_CB_SET), 
_cb_set),
-        
EO_OP_FUNC(ELM_OBJ_GESTURE_LAYER_ID(ELM_OBJ_GESTURE_LAYER_TAP_FINGER_SIZE_SET), 
_tap_finger_size_set),
-        
EO_OP_FUNC(ELM_OBJ_GESTURE_LAYER_ID(ELM_OBJ_GESTURE_LAYER_TAP_FINGER_SIZE_GET), 
_tap_finger_size_get),
+        
EO_OP_FUNC(ELM_OBJ_GESTURE_LAYER_ID(ELM_OBJ_GESTURE_LAYER_SUB_ID_TAP_FINGER_SIZE_SET),
 _tap_finger_size_set),
+        
EO_OP_FUNC(ELM_OBJ_GESTURE_LAYER_ID(ELM_OBJ_GESTURE_LAYER_SUB_ID_TAP_FINGER_SIZE_GET),
 _tap_finger_size_get),
         
EO_OP_FUNC(ELM_OBJ_GESTURE_LAYER_ID(ELM_OBJ_GESTURE_LAYER_SUB_ID_CB_ADD), 
_cb_add),
         
EO_OP_FUNC(ELM_OBJ_GESTURE_LAYER_ID(ELM_OBJ_GESTURE_LAYER_SUB_ID_CB_DEL), 
_cb_del),
         EO_OP_FUNC_SENTINEL
@@ -4353,8 +4353,8 @@ static const Eo_Op_Description op_desc[] = {
      EO_OP_DESCRIPTION(ELM_OBJ_GESTURE_LAYER_SUB_ID_ROTATE_STEP_SET, "This 
function sets step-value for rotate action."),
      EO_OP_DESCRIPTION(ELM_OBJ_GESTURE_LAYER_SUB_ID_ATTACH, "Attach a given 
gesture layer widget to an Evas object, thus setting the widget's target."),
      EO_OP_DESCRIPTION(ELM_OBJ_GESTURE_LAYER_SUB_ID_CB_SET, "Use function to 
set callbacks to be notified about change of state of gesture."),
-     EO_OP_DESCRIPTION(ELM_OBJ_GESTURE_LAYER_TAP_FINGER_SIZE_SET, "Use 
function to set valid touch-area size for finger."),
-     EO_OP_DESCRIPTION(ELM_OBJ_GESTURE_LAYER_TAP_FINGER_SIZE_GET, "This 
function returns the valid touch-area size for finger."),
+     EO_OP_DESCRIPTION(ELM_OBJ_GESTURE_LAYER_SUB_ID_TAP_FINGER_SIZE_SET, "Use 
function to set valid touch-area size for finger."),
+     EO_OP_DESCRIPTION(ELM_OBJ_GESTURE_LAYER_SUB_ID_TAP_FINGER_SIZE_GET, "This 
function returns the valid touch-area size for finger."),
      EO_OP_DESCRIPTION(ELM_OBJ_GESTURE_LAYER_SUB_ID_CB_ADD, "Use function to 
add callbacks to be notified about change of state of gesture."),
      EO_OP_DESCRIPTION(ELM_OBJ_GESTURE_LAYER_SUB_ID_CB_DEL, "Use function to 
remove added callbacks."),
      EO_OP_DESCRIPTION_SENTINEL
diff --git a/src/lib/elm_gesture_layer_eo.h b/src/lib/elm_gesture_layer_eo.h
index d601451..fa7cbfb 100644
--- a/src/lib/elm_gesture_layer_eo.h
+++ b/src/lib/elm_gesture_layer_eo.h
@@ -14,8 +14,8 @@ enum
    ELM_OBJ_GESTURE_LAYER_SUB_ID_ROTATE_STEP_SET,
    ELM_OBJ_GESTURE_LAYER_SUB_ID_ATTACH,
    ELM_OBJ_GESTURE_LAYER_SUB_ID_CB_SET,
-   ELM_OBJ_GESTURE_LAYER_TAP_FINGER_SIZE_SET,
-   ELM_OBJ_GESTURE_LAYER_TAP_FINGER_SIZE_GET,
+   ELM_OBJ_GESTURE_LAYER_SUB_ID_TAP_FINGER_SIZE_SET,
+   ELM_OBJ_GESTURE_LAYER_SUB_ID_TAP_FINGER_SIZE_GET,
    ELM_OBJ_GESTURE_LAYER_SUB_ID_CB_ADD,
    ELM_OBJ_GESTURE_LAYER_SUB_ID_CB_DEL,
    ELM_OBJ_GESTURE_LAYER_SUB_ID_LAST
@@ -199,7 +199,7 @@ enum
  *
  * @ingroup Elm_Gesture_Layer
  */
-#define elm_obj_gesture_layer_tap_finger_size_set(sz) 
ELM_OBJ_GESTURE_LAYER_ID(ELM_OBJ_GESTURE_LAYER_TAP_FINGER_SIZE_SET), 
EO_TYPECHECK(Evas_Coord, sz)
+#define elm_obj_gesture_layer_tap_finger_size_set(sz) 
ELM_OBJ_GESTURE_LAYER_ID(ELM_OBJ_GESTURE_LAYER_SUB_ID_TAP_FINGER_SIZE_SET), 
EO_TYPECHECK(Evas_Coord, sz)
 
 /**
  * @def elm_obj_gesture_layer_tap_finger_size_get
@@ -214,4 +214,4 @@ enum
  *
  * @ingroup Elm_Gesture_Layer
  */
-#define elm_obj_gesture_layer_tap_finger_size_get(ret) 
ELM_OBJ_GESTURE_LAYER_ID(ELM_OBJ_GESTURE_LAYER_TAP_FINGER_SIZE_GET), 
EO_TYPECHECK(Evas_Coord *, ret)
+#define elm_obj_gesture_layer_tap_finger_size_get(ret) 
ELM_OBJ_GESTURE_LAYER_ID(ELM_OBJ_GESTURE_LAYER_SUB_ID_TAP_FINGER_SIZE_GET), 
EO_TYPECHECK(Evas_Coord *, ret)

-- 

------------------------------------------------------------------------------
Get 100% visibility into Java/.NET code with AppDynamics Lite!
It's a free troubleshooting tool designed for production.
Get down to code-level detail for bottlenecks, with <2% overhead. 
Download for free and get started troubleshooting in minutes. 
http://pubads.g.doubleclick.net/gampad/clk?id=48897031&iu=/4140/ostg.clktrk

Reply via email to