elm_image: Fix warning (wrong enum type)

This commit is contained in:
Jean-Philippe Andre 2016-04-06 14:10:15 +09:00
parent 5284b62e93
commit c19030b301
1 changed files with 1 additions and 1 deletions

View File

@ -1706,7 +1706,7 @@ elm_image_orient_set(Evas_Object *obj, Elm_Image_Orient orient)
EAPI Elm_Image_Orient
elm_image_orient_get(const Evas_Object *obj)
{
ELM_IMAGE_CHECK(obj) EVAS_IMAGE_ORIENT_NONE;
ELM_IMAGE_CHECK(obj) ELM_IMAGE_ORIENT_NONE;
ELM_IMAGE_DATA_GET(obj, sd);
return sd->image_orient;