diff options
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/codecs/librm/rm.c | 2 | ||||
| -rw-r--r-- | apps/gui/list.c | 5 | ||||
| -rw-r--r-- | apps/gui/list.h | 5 | ||||
| -rw-r--r-- | apps/gui/wps.c | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/apps/codecs/librm/rm.c b/apps/codecs/librm/rm.c index b205e7f..00ee37a 100644 --- a/apps/codecs/librm/rm.c +++ b/apps/codecs/librm/rm.c @@ -29,7 +29,7 @@ #define SWAP(a, b) do{uint8_t SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0) -void advance_buffer(uint8_t **buf, int val) +static void advance_buffer(uint8_t **buf, int val) { *buf += val; } diff --git a/apps/gui/list.c b/apps/gui/list.c index eb9c025..8a65d3f 100644 --- a/apps/gui/list.c +++ b/apps/gui/list.c @@ -580,11 +580,6 @@ void gui_synclist_speak_item(struct gui_synclist * lists) else _gui_synclist_speak_item(lists, false); } -#if defined(HAVE_TOUCHSCREEN) -/* this needs to be fixed if we ever get more than 1 touchscreen on a target */ -unsigned gui_synclist_do_touchscreen(struct gui_synclist * gui_list); -#endif - bool gui_synclist_do_button(struct gui_synclist * lists, int *actionptr, enum list_wrap wrap) { diff --git a/apps/gui/list.h b/apps/gui/list.h index 6b9f557..50aaebe 100644 --- a/apps/gui/list.h +++ b/apps/gui/list.h @@ -182,6 +182,11 @@ extern bool gui_synclist_do_button(struct gui_synclist * lists, int *action, enum list_wrap); +#if defined(HAVE_TOUCHSCREEN) +/* this needs to be fixed if we ever get more than 1 touchscreen on a target */ +unsigned gui_synclist_do_touchscreen(struct gui_synclist * gui_list); +#endif + /* If the list has a pending postponed scheduled announcement, that may become due before the next get_action tmieout. This function adjusts the get_action timeout appropriately. */ diff --git a/apps/gui/wps.c b/apps/gui/wps.c index a5142a0..29c9403 100644 --- a/apps/gui/wps.c +++ b/apps/gui/wps.c @@ -197,7 +197,7 @@ bool is_wps_fading(void) return wps_fading_out; } -bool update_onvol_change(struct gui_wps * gwps) +static bool update_onvol_change(struct gui_wps * gwps) { skin_update(gwps, WPS_REFRESH_NON_STATIC); |