aspect_ratio_retained -> aspect_fixed
[framework/uifw/elementary.git] / src / lib / elm_photo.c
index a1e83bc..841b03a 100644 (file)
@@ -614,7 +614,7 @@ elm_photo_aspect_fixed_set(Evas_Object *obj, Eina_Bool fixed)
    ELM_CHECK_WIDTYPE(obj, widtype);
    Widget_Data *wd = elm_widget_data_get(obj);
    if (!wd) return;
-   return _els_smart_icon_aspect_ratio_retained_set(wd->img, fixed);
+   return _els_smart_icon_aspect_fixed_set(wd->img, fixed);
 }
 
 EAPI Eina_Bool
@@ -623,7 +623,7 @@ elm_photo_aspect_fixed_get(const Evas_Object *obj)
    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
    Widget_Data *wd = elm_widget_data_get(obj);
    if (!wd) return EINA_FALSE;
-   return _els_smart_icon_aspect_ratio_retained_get(wd->img);
+   return _els_smart_icon_aspect_fixed_get(wd->img);
 }