summaryrefslogtreecommitdiff
path: root/apps
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 /apps
parent9eeead922ad958cae62015eec8156e47ca47fc58 (diff)
downloadrockbox-30a2713b6eef28194d9feb4e9758624f821936ff.zip
rockbox-30a2713b6eef28194d9feb4e9758624f821936ff.tar.gz
rockbox-30a2713b6eef28194d9feb4e9758624f821936ff.tar.bz2
rockbox-30a2713b6eef28194d9feb4e9758624f821936ff.tar.xz
Clean up some more #includes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20243 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-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 1acb9af..aace64a 100644
--- a/apps/cuesheet.c
+++ b/apps/cuesheet.c
@@ -31,7 +31,6 @@
#include "sprintf.h"
#include "misc.h"
#include "screens.h"
-#include "splash.h"
#include "list.h"
#include "action.h"
#include "lang.h"
diff --git a/apps/filetree.c b/apps/filetree.c
index 0ceb5c0..2cb9239 100644
--- a/apps/filetree.c
+++ b/apps/filetree.c
@@ -41,7 +41,6 @@
#include "rolo.h"
#include "sprintf.h"
#include "splash.h"
-#include "yesno.h"
#include "cuesheet.h"
#include "filetree.h"
#include "misc.h"
diff --git a/apps/gui/pitchscreen.c b/apps/gui/pitchscreen.c
index db50a5d..b34824e 100644
--- a/apps/gui/pitchscreen.c
+++ b/apps/gui/pitchscreen.c
@@ -33,6 +33,9 @@
#include "screens.h"
#include "statusbar.h"
#include "viewport.h"
+#include "font.h"
+#include "system.h"
+#include "misc.h"
#include "pitchscreen.h"
#define PITCH_MODE_ABSOLUTE 1
diff --git a/apps/gui/quickscreen.c b/apps/gui/quickscreen.c
index b39105d..455fc18 100644
--- a/apps/gui/quickscreen.c
+++ b/apps/gui/quickscreen.c
@@ -38,7 +38,7 @@
#include "quickscreen.h"
#include "talk.h"
#include "list.h"
-#include "splash.h"
+#include "option_select.h"
static struct viewport vps[NB_SCREENS][QUICKSCREEN_ITEM_COUNT];
static struct viewport vp_icons[NB_SCREENS];
diff --git a/apps/gui/quickscreen.h b/apps/gui/quickscreen.h
index cf7f577..a44c206 100644
--- a/apps/gui/quickscreen.h
+++ b/apps/gui/quickscreen.h
@@ -26,7 +26,6 @@
#ifndef _GUI_QUICKSCREEN_H_
#define _GUI_QUICKSCREEN_H_
-#include "option_select.h"
#include "screen_access.h"
enum QUICKSCREEN_ITEM {
diff --git a/apps/gui/viewport.h b/apps/gui/viewport.h
index d27692c..76ed327 100644
--- a/apps/gui/viewport.h
+++ b/apps/gui/viewport.h
@@ -22,10 +22,6 @@
#include "config.h"
#include "lcd.h"
-#include "font.h"
-#include "kernel.h"
-#include "system.h"
-#include "misc.h"
#include "screen_access.h"
/* return the number of text lines in the vp viewport */
diff --git a/apps/gui/yesno.h b/apps/gui/yesno.h
index 801a925..2c146e4 100644
--- a/apps/gui/yesno.h
+++ b/apps/gui/yesno.h
@@ -22,8 +22,6 @@
#ifndef _GUI_YESNO_H_
#define _GUI_YESNO_H_
-#include "screen_access.h"
-
enum yesno_res
{
YESNO_YES,
diff --git a/apps/menus/eq_menu.c b/apps/menus/eq_menu.c
index 1b38681..e5d89a6 100644
--- a/apps/menus/eq_menu.c
+++ b/apps/menus/eq_menu.c
@@ -40,7 +40,6 @@
#include "talk.h"
#include "misc.h"
#include "sound.h"
-#include "splash.h"
#include "dsp.h"
#include "tree.h"
#include "talk.h"
diff --git a/apps/menus/time_menu.c b/apps/menus/time_menu.c
index 6d5abed..1b70570 100644
--- a/apps/menus/time_menu.c
+++ b/apps/menus/time_menu.c
@@ -32,10 +32,8 @@
#include "menu.h"
#include "misc.h"
#include "exported_menus.h"
-#include "yesno.h"
#include "keyboard.h"
#include "talk.h"
-#include "splash.h"
#include "version.h"
#include "time.h"
#include "viewport.h"
@@ -43,6 +41,8 @@
#include "alarm_menu.h"
#include "screens.h"
#include "radio.h"
+#include "font.h"
+#include "system.h"
static int timedate_set(void)
{
diff --git a/apps/tagcache.c b/apps/tagcache.c
index e7f3294..2b2881a 100644
--- a/apps/tagcache.c
+++ b/apps/tagcache.c
@@ -80,7 +80,6 @@
#include "tagcache.h"
#ifndef __PCTOOL__
-#include "splash.h"
#include "lang.h"
#include "eeprom_settings.h"
#endif