summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/gui/quickscreen.c2
-rw-r--r--apps/gui/quickscreen.h3
2 files changed, 1 insertions, 4 deletions
diff --git a/apps/gui/quickscreen.c b/apps/gui/quickscreen.c
index 7100eb7489..3385a754a6 100644
--- a/apps/gui/quickscreen.c
+++ b/apps/gui/quickscreen.c
@@ -297,7 +297,7 @@ static int quickscreen_touchscreen_button(void)
297 return ACTION_STD_CANCEL; 297 return ACTION_STD_CANCEL;
298} 298}
299#endif 299#endif
300bool gui_syncquickscreen_run(struct gui_quickscreen * qs, int button_enter) 300static bool gui_syncquickscreen_run(struct gui_quickscreen * qs, int button_enter)
301{ 301{
302 int button, i; 302 int button, i;
303 struct viewport vp[NB_SCREENS]; 303 struct viewport vp[NB_SCREENS];
diff --git a/apps/gui/quickscreen.h b/apps/gui/quickscreen.h
index a44c206c50..d37bac3b8b 100644
--- a/apps/gui/quickscreen.h
+++ b/apps/gui/quickscreen.h
@@ -42,9 +42,6 @@ struct gui_quickscreen
42 item is changed */ 42 item is changed */
43}; 43};
44 44
45bool gui_syncquickscreen_run(struct gui_quickscreen * qs, int button_enter);
46
47
48#ifdef BUTTON_F3 45#ifdef BUTTON_F3
49extern bool quick_screen_f3(int button_enter); 46extern bool quick_screen_f3(int button_enter);
50#endif 47#endif