1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

rename lv_anim_del_custom to lv_anim_custom_del

This commit is contained in:
Gabor Kiss-Vamosi 2019-05-17 08:01:22 +02:00
parent b926fd4966
commit e525c08a0c

View File

@ -274,7 +274,7 @@ bool lv_anim_del(void * var, lv_anim_exec_cb_t exec_cb);
* or NULL to ignore it and delete all the animations of 'var
* @return true: at least 1 animation is deleted, false: no animation is deleted
*/
static inline bool lv_anim_del_custom(lv_anim_t * a, lv_anim_custom_exec_cb_t exec_cb)
static inline bool lv_anim_custom_del(lv_anim_t * a, lv_anim_custom_exec_cb_t exec_cb)
{
return lv_anim_del(a->var, (lv_anim_exec_cb_t)exec_cb);
}