summaryrefslogtreecommitdiff
path: root/apps/radio/presets.c
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2022-12-17 03:27:21 -0500
committerWilliam Wilgus <wilgus.william@gmail.com>2022-12-17 04:24:37 -0500
commitc85a4f1fa4062e69f8ad8d9f4a8d70fe8c32bb82 (patch)
tree5b3fad1b7db0925c44247840a1459ac430f4b6d5 /apps/radio/presets.c
parentccf1aaa5bede11c95d219adbf6267426b57613d2 (diff)
downloadrockbox-c85a4f1fa4062e69f8ad8d9f4a8d70fe8c32bb82.tar.gz
rockbox-c85a4f1fa4062e69f8ad8d9f4a8d70fe8c32bb82.zip
menus remove reserved 'param' parameter
-- missed the plugin menu -- Change-Id: Iac2c9b0b8212ab5f3ac2ef90e1ac2723d212f86c
Diffstat (limited to 'apps/radio/presets.c')
-rw-r--r--apps/radio/presets.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/radio/presets.c b/apps/radio/presets.c
index 1cd85637e8..d90f54ed99 100644
--- a/apps/radio/presets.c
+++ b/apps/radio/presets.c
@@ -428,11 +428,11 @@ int preset_list_clear(void)
428} 428}
429 429
430MENUITEM_FUNCTION(radio_edit_preset_item, MENU_FUNC_CHECK_RETVAL, 430MENUITEM_FUNCTION(radio_edit_preset_item, MENU_FUNC_CHECK_RETVAL,
431 ID2P(LANG_FM_EDIT_PRESET), 431 ID2P(LANG_FM_EDIT_PRESET),
432 radio_edit_preset, NULL, NULL, Icon_NOICON); 432 radio_edit_preset, NULL, Icon_NOICON);
433MENUITEM_FUNCTION(radio_delete_preset_item, MENU_FUNC_CHECK_RETVAL, 433MENUITEM_FUNCTION(radio_delete_preset_item, MENU_FUNC_CHECK_RETVAL,
434 ID2P(LANG_FM_DELETE_PRESET), 434 ID2P(LANG_FM_DELETE_PRESET),
435 radio_delete_preset, NULL, NULL, Icon_NOICON); 435 radio_delete_preset, NULL, Icon_NOICON);
436static int radio_preset_callback(int action, 436static int radio_preset_callback(int action,
437 const struct menu_item_ex *this_item, 437 const struct menu_item_ex *this_item,
438 struct gui_synclist *this_list) 438 struct gui_synclist *this_list)