summaryrefslogtreecommitdiffstats
path: root/apps/gui
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-08-13 14:27:06 +0000
committerThomas Martitz <kugel@rockbox.org>2009-08-13 14:27:06 +0000
commit20b9bc5c0a62e3bca446b2b077a381da7802d475 (patch)
tree60bd7d120deb3e7fe8cb9e60acaa9e80964a6ba4 /apps/gui
parente04f95eab9eaf51fcef2f56c258ea68d8df97d9d (diff)
downloadrockbox-20b9bc5c0a62e3bca446b2b077a381da7802d475.tar.gz
rockbox-20b9bc5c0a62e3bca446b2b077a381da7802d475.zip
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
Diffstat (limited to 'apps/gui')
-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)
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 a44c206c50..d37bac3b8b 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