(Menu) iterate was not used either

This commit is contained in:
Jean-André Santoni 2015-02-10 15:06:41 +01:00
parent e330f03124
commit f331eba299
8 changed files with 0 additions and 10 deletions

View File

@ -636,7 +636,6 @@ menu_ctx_driver_t menu_ctx_glui = {
NULL, NULL,
NULL, NULL,
NULL, NULL,
NULL,
glui_navigation_clear, glui_navigation_clear,
NULL, NULL,
NULL, NULL,

View File

@ -99,7 +99,6 @@ menu_ctx_driver_t menu_ctx_ios = {
NULL, // context_reset NULL, // context_reset
NULL, // context_destroy NULL, // context_destroy
NULL, // populate_entries NULL, // populate_entries
NULL, // iterate
NULL, // toggle NULL, // toggle
NULL, // navigation_clear NULL, // navigation_clear
NULL, // navigation_decrement NULL, // navigation_decrement

View File

@ -665,7 +665,6 @@ menu_ctx_driver_t menu_ctx_rgui = {
NULL, NULL,
rgui_populate_entries, rgui_populate_entries,
NULL, NULL,
NULL,
rgui_navigation_clear, rgui_navigation_clear,
NULL, NULL,
NULL, NULL,

View File

@ -390,7 +390,6 @@ menu_ctx_driver_t menu_ctx_rmenu = {
NULL, NULL,
NULL, NULL,
NULL, NULL,
NULL,
rmenu_entry_iterate, rmenu_entry_iterate,
"rmenu", "rmenu",
}; };

View File

@ -698,7 +698,6 @@ menu_ctx_driver_t menu_ctx_rmenu_xui = {
NULL, NULL,
NULL, NULL,
rmenu_xui_populate_entries, rmenu_xui_populate_entries,
NULL,
rmenu_xui_navigation_clear, rmenu_xui_navigation_clear,
rmenu_xui_navigation_set_visible, rmenu_xui_navigation_set_visible,
rmenu_xui_navigation_set_visible, rmenu_xui_navigation_set_visible,

View File

@ -1702,7 +1702,6 @@ menu_ctx_driver_t menu_ctx_xmb = {
xmb_context_reset, xmb_context_reset,
xmb_context_destroy, xmb_context_destroy,
xmb_populate_entries, xmb_populate_entries,
NULL,
xmb_toggle, xmb_toggle,
xmb_navigation_clear, xmb_navigation_clear,
xmb_navigation_decrement, xmb_navigation_decrement,

View File

@ -185,7 +185,6 @@ typedef struct menu_ctx_driver
void (*context_destroy)(void*); void (*context_destroy)(void*);
void (*populate_entries)(void*, const char *, const char *, void (*populate_entries)(void*, const char *, const char *,
unsigned); unsigned);
void (*iterate)(void*, unsigned);
void (*toggle)(bool); void (*toggle)(bool);
void (*navigation_clear)(void *, bool); void (*navigation_clear)(void *, bool);
void (*navigation_decrement)(void *); void (*navigation_decrement)(void *);

View File

@ -4105,9 +4105,6 @@ static int action_iterate_main(const char *label, unsigned action)
ret = mouse_post_iterate(cbs, path_offset, label_offset, type_offset, action); ret = mouse_post_iterate(cbs, path_offset, label_offset, type_offset, action);
if (driver.menu_ctx && driver.menu_ctx->iterate)
driver.menu_ctx->iterate(driver.menu, action);
if (driver.video_data && driver.menu_ctx && driver.menu_ctx->render) if (driver.video_data && driver.menu_ctx && driver.menu_ctx->render)
driver.menu_ctx->render(); driver.menu_ctx->render();