diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2008-05-03 08:35:14 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2008-05-03 08:35:14 +0000 |
| commit | e15f8a21a971920558a6f463586b16a0ee49ad79 (patch) | |
| tree | 91d6771d0979c43e5390dc1de0ba79cd0638ba25 /apps/menu.c | |
| parent | 9c1ab1f0572da9d68f45fc8cb6c361cee0b33376 (diff) | |
| download | rockbox-e15f8a21a971920558a6f463586b16a0ee49ad79.zip rockbox-e15f8a21a971920558a6f463586b16a0ee49ad79.tar.gz rockbox-e15f8a21a971920558a6f463586b16a0ee49ad79.tar.bz2 rockbox-e15f8a21a971920558a6f463586b16a0ee49ad79.tar.xz | |
Made source files #include the header file that they implement to make sure they are in sync. Made some local functions static.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17312 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/menu.c')
| -rw-r--r-- | apps/menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/menu.c b/apps/menu.c index f61acd0..e1998ea 100644 --- a/apps/menu.c +++ b/apps/menu.c @@ -282,7 +282,7 @@ static int talk_menu_item(int selected_item, void *data) } /* this is used to reload the default menu viewports when the theme changes. nothing happens if the menu is using a supplied parent vp */ -void init_default_menu_viewports(struct viewport parent[NB_SCREENS], bool hide_bars) +static void init_default_menu_viewports(struct viewport parent[NB_SCREENS], bool hide_bars) { int i; FOR_NB_SCREENS(i) |