elm: Revised image/icon. 'disable' -> 'disabled'

Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>

SVN revision: 68880
This commit is contained in:
Daniel Juyung Seo 2012-03-07 06:29:12 +00:00 committed by Daniel Juyung Seo
parent 22b98643a0
commit 5b07152440
3 changed files with 5 additions and 5 deletions

View File

@ -987,13 +987,13 @@ elm_icon_object_get(Evas_Object *obj)
}
EAPI void
elm_icon_preload_disabled_set(Evas_Object *obj, Eina_Bool disable)
elm_icon_preload_disabled_set(Evas_Object *obj, Eina_Bool disabled)
{
ELM_CHECK_WIDTYPE(obj, widtype);
Widget_Data *wd = elm_widget_data_get(obj);
if (!wd) return;
_els_smart_icon_preload_set(wd->img, disable);
_els_smart_icon_preload_set(wd->img, !!disable);
}
EINA_DEPRECATED EAPI void

View File

@ -452,10 +452,10 @@ EAPI Elm_Icon_Lookup_Order elm_icon_order_lookup_get(const Evas_Object *obj);
* Enable or disable preloading of the icon
*
* @param obj The icon object
* @param disable If EINA_TRUE, preloading will be disabled
* @param disabled If EINA_TRUE, preloading will be disabled
* @ingroup Icon
*/
EAPI void elm_icon_preload_disabled_set(Evas_Object *obj, Eina_Bool disable);
EAPI void elm_icon_preload_disabled_set(Evas_Object *obj, Eina_Bool disabled);
/**
* Get if the icon supports animation or not.

View File

@ -241,7 +241,7 @@ EAPI Eina_Bool elm_image_fill_outside_get(const Evas_Object *obj);
* Enable or disable preloading of the image
*
* @param obj The image object
* @param disable If EINA_TRUE, preloading will be disabled
* @param disabled If EINA_TRUE, preloading will be disabled
* @ingroup Icon
*/
EAPI void elm_image_preload_disabled_set(Evas_Object *obj, Eina_Bool disabled);