From 5bed747f58a51c3fe985b2f2db8e8fda1bb3b0a5 Mon Sep 17 00:00:00 2001 From: Yakov Goldberg Date: Sun, 17 Nov 2013 09:49:12 +0200 Subject: [PATCH] thumb: typo in Eo OP_ID name --- legacy/elementary/src/lib/elm_thumb.c | 8 ++++---- legacy/elementary/src/lib/elm_thumb_eo.h | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/legacy/elementary/src/lib/elm_thumb.c b/legacy/elementary/src/lib/elm_thumb.c index 9f7b4e13c9..a3e3fd9793 100644 --- a/legacy/elementary/src/lib/elm_thumb.c +++ b/legacy/elementary/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/legacy/elementary/src/lib/elm_thumb_eo.h b/legacy/elementary/src/lib/elm_thumb_eo.h index 02ac25a0d5..e85e14ffb4 100644 --- a/legacy/elementary/src/lib/elm_thumb_eo.h +++ b/legacy/elementary/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