diff options
author | Max Horn | 2005-01-10 22:35:43 +0000 |
---|---|---|
committer | Max Horn | 2005-01-10 22:35:43 +0000 |
commit | 5c48717dd254d4d6348631d4a7e62f27f4ee5b40 (patch) | |
tree | a988a5834b27a7e59b156ceecb606f6c702df9fb | |
parent | 6f6668ce21ea4ac8554a0b0c9de55a8683b0d81d (diff) | |
download | scummvm-rg350-5c48717dd254d4d6348631d4a7e62f27f4ee5b40.tar.gz scummvm-rg350-5c48717dd254d4d6348631d4a7e62f27f4ee5b40.tar.bz2 scummvm-rg350-5c48717dd254d4d6348631d4a7e62f27f4ee5b40.zip |
Remove some more header dependencies
svn-id: r16530
-rw-r--r-- | backends/midi/coreaudio.cpp | 1 | ||||
-rw-r--r-- | common/config-manager.cpp | 1 | ||||
-rw-r--r-- | common/config-manager.h | 1 | ||||
-rw-r--r-- | common/rect.h | 1 | ||||
-rw-r--r-- | common/system.cpp | 1 | ||||
-rw-r--r-- | gui/about.cpp | 1 | ||||
-rw-r--r-- | saga/saga.h | 1 | ||||
-rw-r--r-- | scumm/charset.h | 1 | ||||
-rw-r--r-- | scumm/cursor.cpp | 1 | ||||
-rw-r--r-- | sound/mididrv.cpp | 1 |
10 files changed, 7 insertions, 3 deletions
diff --git a/backends/midi/coreaudio.cpp b/backends/midi/coreaudio.cpp index 1f364f25d0..48d92383a3 100644 --- a/backends/midi/coreaudio.cpp +++ b/backends/midi/coreaudio.cpp @@ -22,6 +22,7 @@ #include "stdafx.h" #include "common/config-manager.h" +#include "common/util.h" #include "sound/mpu401.h" #include <AudioUnit/AudioUnit.h> diff --git a/common/config-manager.cpp b/common/config-manager.cpp index 85b1c5e328..8e98f374cd 100644 --- a/common/config-manager.cpp +++ b/common/config-manager.cpp @@ -23,6 +23,7 @@ #include "stdafx.h" #include "common/config-manager.h" +#include "common/util.h" DECLARE_SINGLETON(Common::ConfigManager); diff --git a/common/config-manager.h b/common/config-manager.h index e23d211348..67962239cb 100644 --- a/common/config-manager.h +++ b/common/config-manager.h @@ -27,7 +27,6 @@ #include "common/map.h" #include "common/singleton.h" #include "common/str.h" -#include "common/util.h" namespace Common { diff --git a/common/rect.h b/common/rect.h index 66c7be738f..bc70153ae4 100644 --- a/common/rect.h +++ b/common/rect.h @@ -23,7 +23,6 @@ #define COMMON_RECT_H #include "common/scummsys.h" -#include "common/util.h" namespace Common { diff --git a/common/system.cpp b/common/system.cpp index 28abb27a61..0168cf482c 100644 --- a/common/system.cpp +++ b/common/system.cpp @@ -31,6 +31,7 @@ #include "common/config-manager.h" #include "common/savefile.h" #include "common/system.h" +#include "common/util.h" DECLARE_SINGLETON(OSystem); diff --git a/gui/about.cpp b/gui/about.cpp index 96a6fc50a9..8ee240b9ed 100644 --- a/gui/about.cpp +++ b/gui/about.cpp @@ -22,6 +22,7 @@ #include "base/engine.h" #include "base/version.h" #include "common/system.h" +#include "common/util.h" #include "gui/about.h" #include "gui/newgui.h" #include "gui/widget.h" diff --git a/saga/saga.h b/saga/saga.h index a39fcb5c6b..ef49c2c665 100644 --- a/saga/saga.h +++ b/saga/saga.h @@ -28,7 +28,6 @@ #include "common/scummsys.h" #include "base/engine.h" #include "base/gameDetector.h" -#include "base/plugins.h" #include "common/util.h" #include "common/stream.h" diff --git a/scumm/charset.h b/scumm/charset.h index e546d16b73..d3dfdba095 100644 --- a/scumm/charset.h +++ b/scumm/charset.h @@ -23,6 +23,7 @@ #include "common/scummsys.h" #include "common/rect.h" +#include "common/util.h" #include "scumm/gfx.h" namespace Scumm { diff --git a/scumm/cursor.cpp b/scumm/cursor.cpp index 2fb0a0c514..5d321c1706 100644 --- a/scumm/cursor.cpp +++ b/scumm/cursor.cpp @@ -21,6 +21,7 @@ #include "stdafx.h" #include "common/system.h" +#include "common/util.h" #include "scumm/bomp.h" #include "scumm/charset.h" #include "scumm/intern.h" diff --git a/sound/mididrv.cpp b/sound/mididrv.cpp index 94b4b08452..b148587108 100644 --- a/sound/mididrv.cpp +++ b/sound/mididrv.cpp @@ -25,6 +25,7 @@ #include "base/engine.h" #include "common/config-manager.h" #include "common/str.h" +#include "common/util.h" #include "sound/mididrv.h" /** Internal list of all available 'midi' drivers. */ |