lv_kb: fix typo

This commit is contained in:
Gabor Kiss-Vamosi
2019-04-10 06:25:44 +02:00
parent b0f3949b3c
commit d3b494b030

View File

@@ -167,7 +167,10 @@ bool lv_kb_get_cursor_manage(const lv_obj_t * kb);
* @param kb pointer to a keyboard object * @param kb pointer to a keyboard object
* @return the current map * @return the current map
*/ */
static inline const char ** lv_btnm_get_map_array(const lv_obj_t * btnm); static inline const char ** lv_kb_get_map_array(const lv_obj_t * kb)
{
return lv_btnm_get_map_array(kb);
}
/** /**
* Get a style of a keyboard * Get a style of a keyboard