yakov pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=aab4e06160de2b21d42a1912e30eab857bd98c44

commit aab4e06160de2b21d42a1912e30eab857bd98c44
Author: Yakov Goldberg <yako...@samsung.com>
Date:   Sun Nov 17 09:49:12 2013 +0200

    thumb: typo in Eo OP_ID name
---
 src/lib/elm_thumb.c    | 8 ++++----
 src/lib/elm_thumb_eo.h | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/lib/elm_thumb.c b/src/lib/elm_thumb.c
index 9f7b4e1..a3e3fd9 100644
--- a/src/lib/elm_thumb.c
+++ b/src/lib/elm_thumb.c
@@ -1152,8 +1152,8 @@ _class_constructor(Eo_Class *klass)
         EO_OP_FUNC(ELM_OBJ_THUMB_ID(ELM_OBJ_THUMB_SUB_ID_ORIENTATION_GET), 
_orientation_get),
         EO_OP_FUNC(ELM_OBJ_THUMB_ID(ELM_OBJ_THUMB_SUB_ID_CROP_ALIGN_SET), 
_crop_align_set),
         EO_OP_FUNC(ELM_OBJ_THUMB_ID(ELM_OBJ_THUMB_SUB_ID_CROP_ALIGN_GET), 
_crop_align_get),
-        EO_OP_FUNC(ELM_OBJ_THUMB_ID(ELM_OBJ_THUMB_SUB_ID_THUMB_SIZE_SET), 
_thumb_size_set),
-        EO_OP_FUNC(ELM_OBJ_THUMB_ID(ELM_OBJ_THUMB_SUB_ID_THUMB_SIZE_GET), 
_thumb_size_get),
+        EO_OP_FUNC(ELM_OBJ_THUMB_ID(ELM_OBJ_THUMB_SUB_ID_SIZE_SET), 
_thumb_size_set),
+        EO_OP_FUNC(ELM_OBJ_THUMB_ID(ELM_OBJ_THUMB_SUB_ID_SIZE_GET), 
_thumb_size_get),
         EO_OP_FUNC(ELM_OBJ_THUMB_ID(ELM_OBJ_THUMB_SUB_ID_COMPRESS_SET), 
_compress_set),
         EO_OP_FUNC(ELM_OBJ_THUMB_ID(ELM_OBJ_THUMB_SUB_ID_COMPRESS_GET), 
_compress_get),
         EO_OP_FUNC(ELM_OBJ_THUMB_ID(ELM_OBJ_THUMB_SUB_ID_QUALITY_SET), 
_quality_set),
@@ -1184,8 +1184,8 @@ static const Eo_Op_Description op_desc[] = {
      EO_OP_DESCRIPTION(ELM_OBJ_THUMB_SUB_ID_ORIENTATION_GET, "Get the 
orientation of the thumb object."),
      EO_OP_DESCRIPTION(ELM_OBJ_THUMB_SUB_ID_CROP_ALIGN_SET, "Set the crop of 
the thumb object."),
      EO_OP_DESCRIPTION(ELM_OBJ_THUMB_SUB_ID_CROP_ALIGN_GET, "Get the crop of 
the thumb object."),
-     EO_OP_DESCRIPTION(ELM_OBJ_THUMB_SUB_ID_THUMB_SIZE_SET, "Set the thumb 
size of the thumb object."),
-     EO_OP_DESCRIPTION(ELM_OBJ_THUMB_SUB_ID_THUMB_SIZE_GET, "Get the thumb 
size of the thumb object."),
+     EO_OP_DESCRIPTION(ELM_OBJ_THUMB_SUB_ID_SIZE_SET, "Set the thumb size of 
the thumb object."),
+     EO_OP_DESCRIPTION(ELM_OBJ_THUMB_SUB_ID_SIZE_GET, "Get the thumb size of 
the thumb object."),
      EO_OP_DESCRIPTION(ELM_OBJ_THUMB_SUB_ID_COMPRESS_SET, "Set the compression 
of the thumb object."),
      EO_OP_DESCRIPTION(ELM_OBJ_THUMB_SUB_ID_COMPRESS_GET, "Get the compression 
of the thumb object."),
      EO_OP_DESCRIPTION(ELM_OBJ_THUMB_SUB_ID_QUALITY_SET, "Set the quality of 
the thumb object."),
diff --git a/src/lib/elm_thumb_eo.h b/src/lib/elm_thumb_eo.h
index 02ac25a..e85e14f 100644
--- a/src/lib/elm_thumb_eo.h
+++ b/src/lib/elm_thumb_eo.h
@@ -20,8 +20,8 @@ enum
    ELM_OBJ_THUMB_SUB_ID_ORIENTATION_GET,
    ELM_OBJ_THUMB_SUB_ID_CROP_ALIGN_SET,
    ELM_OBJ_THUMB_SUB_ID_CROP_ALIGN_GET,
-   ELM_OBJ_THUMB_SUB_ID_THUMB_SIZE_SET,
-   ELM_OBJ_THUMB_SUB_ID_THUMB_SIZE_GET,
+   ELM_OBJ_THUMB_SUB_ID_SIZE_SET,
+   ELM_OBJ_THUMB_SUB_ID_SIZE_GET,
    ELM_OBJ_THUMB_SUB_ID_COMPRESS_SET,
    ELM_OBJ_THUMB_SUB_ID_COMPRESS_GET,
    ELM_OBJ_THUMB_SUB_ID_QUALITY_SET,
@@ -215,7 +215,7 @@ enum
  *
  * @ingroup Thumb
  */
-#define elm_obj_thumb_size_set(tw, th) 
ELM_OBJ_THUMB_ID(ELM_OBJ_THUMB_SUB_ID_THUMB_SIZE_SET), EO_TYPECHECK(int, tw), 
EO_TYPECHECK(int, th)
+#define elm_obj_thumb_size_set(tw, th) 
ELM_OBJ_THUMB_ID(ELM_OBJ_THUMB_SUB_ID_SIZE_SET), EO_TYPECHECK(int, tw), 
EO_TYPECHECK(int, th)
 
 /**
  * @def elm_obj_thumb_size_get
@@ -230,7 +230,7 @@ enum
  *
  * @ingroup Thumb
  */
-#define elm_obj_thumb_size_get(tw, th) 
ELM_OBJ_THUMB_ID(ELM_OBJ_THUMB_SUB_ID_THUMB_SIZE_GET), EO_TYPECHECK(int *, tw), 
EO_TYPECHECK(int *, th)
+#define elm_obj_thumb_size_get(tw, th) 
ELM_OBJ_THUMB_ID(ELM_OBJ_THUMB_SUB_ID_SIZE_GET), EO_TYPECHECK(int *, tw), 
EO_TYPECHECK(int *, th)
 
 /**
  * @def elm_obj_thumb_crop_align_set

-- 


Reply via email to