summaryrefslogtreecommitdiff
path: root/apps/menus/theme_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/menus/theme_menu.c')
-rw-r--r--apps/menus/theme_menu.c20
1 files changed, 16 insertions, 4 deletions
diff --git a/apps/menus/theme_menu.c b/apps/menus/theme_menu.c
index f64ded1615..10d1291daa 100644
--- a/apps/menus/theme_menu.c
+++ b/apps/menus/theme_menu.c
@@ -182,20 +182,29 @@ static int statusbar_callback_ex(int action,const struct menu_item_ex *this_item
182} 182}
183 183
184#ifdef HAVE_REMOTE_LCD 184#ifdef HAVE_REMOTE_LCD
185static int statusbar_callback_remote(int action,const struct menu_item_ex *this_item) 185static int statusbar_callback_remote(int action,
186 const struct menu_item_ex *this_item,
187 struct gui_synclist *this_list)
186{ 188{
189 (void)this_list;
187 return statusbar_callback_ex(action, this_item, SCREEN_REMOTE); 190 return statusbar_callback_ex(action, this_item, SCREEN_REMOTE);
188} 191}
189#endif 192#endif
190static int statusbar_callback(int action,const struct menu_item_ex *this_item) 193static int statusbar_callback(int action,
194 const struct menu_item_ex *this_item,
195 struct gui_synclist *this_list)
191{ 196{
197 (void)this_list;
192 return statusbar_callback_ex(action, this_item, SCREEN_MAIN); 198 return statusbar_callback_ex(action, this_item, SCREEN_MAIN);
193} 199}
194 200
195#ifdef HAVE_BUTTONBAR 201#ifdef HAVE_BUTTONBAR
196static int buttonbar_callback(int action, const struct menu_item_ex *this_item) 202static int buttonbar_callback(int action,
203 const struct menu_item_ex *this_item,
204 struct gui_synclist *this_list)
197{ 205{
198 (void)this_item; 206 (void)this_item;
207 (void)this_list;
199 switch (action) 208 switch (action)
200 { 209 {
201 case ACTION_EXIT_MENUITEM: 210 case ACTION_EXIT_MENUITEM:
@@ -369,9 +378,12 @@ MENUITEM_FUNCTION(browse_rfms, MENU_FUNC_USEPARAM,
369#endif 378#endif
370 379
371 380
372static int showicons_callback(int action, const struct menu_item_ex *this_item) 381static int showicons_callback(int action,
382 const struct menu_item_ex *this_item,
383 struct gui_synclist *this_list)
373{ 384{
374 (void)this_item; 385 (void)this_item;
386 (void)this_list;
375 static bool old_icons; 387 static bool old_icons;
376 switch (action) 388 switch (action)
377 { 389 {