summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2009-03-08 18:37:32 +0000
committerBertrik Sikken <bertrik@sikken.nl>2009-03-08 18:37:32 +0000
commit30a2713b6eef28194d9feb4e9758624f821936ff (patch)
tree831e41420d8201882250594deb4abe6f54354fc9
parent9eeead922ad958cae62015eec8156e47ca47fc58 (diff)
downloadrockbox-30a2713b6eef28194d9feb4e9758624f821936ff.tar.gz
rockbox-30a2713b6eef28194d9feb4e9758624f821936ff.zip
Clean up some more #includes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20243 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/cuesheet.c1
-rw-r--r--apps/filetree.c1
-rw-r--r--apps/gui/pitchscreen.c3
-rw-r--r--apps/gui/quickscreen.c2
-rw-r--r--apps/gui/quickscreen.h1
-rw-r--r--apps/gui/viewport.h4
-rw-r--r--apps/gui/yesno.h2
-rw-r--r--apps/menus/eq_menu.c1
-rw-r--r--apps/menus/time_menu.c4
-rw-r--r--apps/tagcache.c1
10 files changed, 6 insertions, 14 deletions
diff --git a/apps/cuesheet.c b/apps/cuesheet.c
index 1acb9af5cf..aace64a8fc 100644
--- a/apps/cuesheet.c
+++ b/apps/cuesheet.c
@@ -31,7 +31,6 @@
31#include "sprintf.h" 31#include "sprintf.h"
32#include "misc.h" 32#include "misc.h"
33#include "screens.h" 33#include "screens.h"
34#include "splash.h"
35#include "list.h" 34#include "list.h"
36#include "action.h" 35#include "action.h"
37#include "lang.h" 36#include "lang.h"
diff --git a/apps/filetree.c b/apps/filetree.c
index 0ceb5c0941..2cb9239c2a 100644
--- a/apps/filetree.c
+++ b/apps/filetree.c
@@ -41,7 +41,6 @@
41#include "rolo.h" 41#include "rolo.h"
42#include "sprintf.h" 42#include "sprintf.h"
43#include "splash.h" 43#include "splash.h"
44#include "yesno.h"
45#include "cuesheet.h" 44#include "cuesheet.h"
46#include "filetree.h" 45#include "filetree.h"
47#include "misc.h" 46#include "misc.h"
diff --git a/apps/gui/pitchscreen.c b/apps/gui/pitchscreen.c
index db50a5d866..b34824ebad 100644
--- a/apps/gui/pitchscreen.c
+++ b/apps/gui/pitchscreen.c
@@ -33,6 +33,9 @@
33#include "screens.h" 33#include "screens.h"
34#include "statusbar.h" 34#include "statusbar.h"
35#include "viewport.h" 35#include "viewport.h"
36#include "font.h"
37#include "system.h"
38#include "misc.h"
36#include "pitchscreen.h" 39#include "pitchscreen.h"
37 40
38#define PITCH_MODE_ABSOLUTE 1 41#define PITCH_MODE_ABSOLUTE 1
diff --git a/apps/gui/quickscreen.c b/apps/gui/quickscreen.c
index b39105dc72..455fc1812d 100644
--- a/apps/gui/quickscreen.c
+++ b/apps/gui/quickscreen.c
@@ -38,7 +38,7 @@
38#include "quickscreen.h" 38#include "quickscreen.h"
39#include "talk.h" 39#include "talk.h"
40#include "list.h" 40#include "list.h"
41#include "splash.h" 41#include "option_select.h"
42 42
43static struct viewport vps[NB_SCREENS][QUICKSCREEN_ITEM_COUNT]; 43static struct viewport vps[NB_SCREENS][QUICKSCREEN_ITEM_COUNT];
44static struct viewport vp_icons[NB_SCREENS]; 44static struct viewport vp_icons[NB_SCREENS];
diff --git a/apps/gui/quickscreen.h b/apps/gui/quickscreen.h
index cf7f577429..a44c206c50 100644
--- a/apps/gui/quickscreen.h
+++ b/apps/gui/quickscreen.h
@@ -26,7 +26,6 @@
26#ifndef _GUI_QUICKSCREEN_H_ 26#ifndef _GUI_QUICKSCREEN_H_
27#define _GUI_QUICKSCREEN_H_ 27#define _GUI_QUICKSCREEN_H_
28 28
29#include "option_select.h"
30#include "screen_access.h" 29#include "screen_access.h"
31 30
32enum QUICKSCREEN_ITEM { 31enum QUICKSCREEN_ITEM {
diff --git a/apps/gui/viewport.h b/apps/gui/viewport.h
index d27692c498..76ed327f69 100644
--- a/apps/gui/viewport.h
+++ b/apps/gui/viewport.h
@@ -22,10 +22,6 @@
22 22
23#include "config.h" 23#include "config.h"
24#include "lcd.h" 24#include "lcd.h"
25#include "font.h"
26#include "kernel.h"
27#include "system.h"
28#include "misc.h"
29#include "screen_access.h" 25#include "screen_access.h"
30 26
31/* return the number of text lines in the vp viewport */ 27/* return the number of text lines in the vp viewport */
diff --git a/apps/gui/yesno.h b/apps/gui/yesno.h
index 801a925ee4..2c146e4853 100644
--- a/apps/gui/yesno.h
+++ b/apps/gui/yesno.h
@@ -22,8 +22,6 @@
22#ifndef _GUI_YESNO_H_ 22#ifndef _GUI_YESNO_H_
23#define _GUI_YESNO_H_ 23#define _GUI_YESNO_H_
24 24
25#include "screen_access.h"
26
27enum yesno_res 25enum yesno_res
28{ 26{
29 YESNO_YES, 27 YESNO_YES,
diff --git a/apps/menus/eq_menu.c b/apps/menus/eq_menu.c
index 1b386816c2..e5d89a696b 100644
--- a/apps/menus/eq_menu.c
+++ b/apps/menus/eq_menu.c
@@ -40,7 +40,6 @@
40#include "talk.h" 40#include "talk.h"
41#include "misc.h" 41#include "misc.h"
42#include "sound.h" 42#include "sound.h"
43#include "splash.h"
44#include "dsp.h" 43#include "dsp.h"
45#include "tree.h" 44#include "tree.h"
46#include "talk.h" 45#include "talk.h"
diff --git a/apps/menus/time_menu.c b/apps/menus/time_menu.c
index 6d5abed622..1b70570ae4 100644
--- a/apps/menus/time_menu.c
+++ b/apps/menus/time_menu.c
@@ -32,10 +32,8 @@
32#include "menu.h" 32#include "menu.h"
33#include "misc.h" 33#include "misc.h"
34#include "exported_menus.h" 34#include "exported_menus.h"
35#include "yesno.h"
36#include "keyboard.h" 35#include "keyboard.h"
37#include "talk.h" 36#include "talk.h"
38#include "splash.h"
39#include "version.h" 37#include "version.h"
40#include "time.h" 38#include "time.h"
41#include "viewport.h" 39#include "viewport.h"
@@ -43,6 +41,8 @@
43#include "alarm_menu.h" 41#include "alarm_menu.h"
44#include "screens.h" 42#include "screens.h"
45#include "radio.h" 43#include "radio.h"
44#include "font.h"
45#include "system.h"
46 46
47static int timedate_set(void) 47static int timedate_set(void)
48{ 48{
diff --git a/apps/tagcache.c b/apps/tagcache.c
index e7f3294dbf..2b2881a9b8 100644
--- a/apps/tagcache.c
+++ b/apps/tagcache.c
@@ -80,7 +80,6 @@
80#include "tagcache.h" 80#include "tagcache.h"
81 81
82#ifndef __PCTOOL__ 82#ifndef __PCTOOL__
83#include "splash.h"
84#include "lang.h" 83#include "lang.h"
85#include "eeprom_settings.h" 84#include "eeprom_settings.h"
86#endif 85#endif