From 5eeee3bb340e28e12009547a586215e98b0cf890 Mon Sep 17 00:00:00 2001 From: kugel Date: Thu, 13 Aug 2009 14:27:06 +0000 Subject: [PATCH] Make gui_syncquickscreen_run() static as it's not used anywhere. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22290 a1c6a512-1295-4272-9138-f99709370657 --- apps/gui/quickscreen.c | 2 +- apps/gui/quickscreen.h | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/apps/gui/quickscreen.c b/apps/gui/quickscreen.c index 7100eb748..3385a754a 100644 --- a/apps/gui/quickscreen.c +++ b/apps/gui/quickscreen.c @@ -297,7 +297,7 @@ static int quickscreen_touchscreen_button(void) return ACTION_STD_CANCEL; } #endif -bool gui_syncquickscreen_run(struct gui_quickscreen * qs, int button_enter) +static bool gui_syncquickscreen_run(struct gui_quickscreen * qs, int button_enter) { int button, i; struct viewport vp[NB_SCREENS]; diff --git a/apps/gui/quickscreen.h b/apps/gui/quickscreen.h index a44c206c5..d37bac3b8 100644 --- a/apps/gui/quickscreen.h +++ b/apps/gui/quickscreen.h @@ -42,9 +42,6 @@ struct gui_quickscreen item is changed */ }; -bool gui_syncquickscreen_run(struct gui_quickscreen * qs, int button_enter); - - #ifdef BUTTON_F3 extern bool quick_screen_f3(int button_enter); #endif -- 2.11.4.GIT