summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMinkyu Kang <mk7.kang@samsung.com>2016-02-19 15:57:12 -0800
committerCedric BAIL <cedric@osg.samsung.com>2016-02-29 15:40:06 -0800
commitd06a13c7deaa7d49d518f7efef22073caa641c48 (patch)
tree2c341e45a2f547704e4d5a5b06419c46b64dd00d
parent4d489ee5360b5781a0f572ba0dfb69f7af23e52b (diff)
downloadelementary-d06a13c7deaa7d49d518f7efef22073caa641c48.tar.gz
image: remove EINA_UNUSED
Summary: parameter is used Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> Reviewers: Hermet, seoz, cedric Reviewed By: cedric Subscribers: seoz Differential Revision: https://phab.enlightenment.org/D3718 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
-rw-r--r--src/lib/elm_image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elm_image.c b/src/lib/elm_image.c
index 356f2160c..3989acb40 100644
--- a/src/lib/elm_image.c
+++ b/src/lib/elm_image.c
@@ -1313,7 +1313,7 @@ _elm_image_no_scale_get(Eo *obj EINA_UNUSED, Elm_Image_Data *sd)
}
EOLIAN static void
-_elm_image_resizable_set(Eo *obj EINA_UNUSED, Elm_Image_Data *sd, Eina_Bool up, Eina_Bool down)
+_elm_image_resizable_set(Eo *obj, Elm_Image_Data *sd, Eina_Bool up, Eina_Bool down)
{
sd->resize_up = !!up;
sd->resize_down = !!down;