aboutsummaryrefslogtreecommitdiff
path: root/gui/ThemeEval.h
diff options
context:
space:
mode:
authorMax Horn2008-11-09 15:14:01 +0000
committerMax Horn2008-11-09 15:14:01 +0000
commitf5b70114ca087fc55fdf384788080d11d96a73d0 (patch)
tree105d940f04391e40b361d6e5eb18af149ca52002 /gui/ThemeEval.h
parentb7991b6ad8c5efcf84de2b252383c18e5bb66f09 (diff)
downloadscummvm-rg350-f5b70114ca087fc55fdf384788080d11d96a73d0.tar.gz
scummvm-rg350-f5b70114ca087fc55fdf384788080d11d96a73d0.tar.bz2
scummvm-rg350-f5b70114ca087fc55fdf384788080d11d96a73d0.zip
Removed many unnecessary #includes
svn-id: r34959
Diffstat (limited to 'gui/ThemeEval.h')
-rw-r--r--gui/ThemeEval.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/gui/ThemeEval.h b/gui/ThemeEval.h
index 0b5537f190..5fe0e73bd3 100644
--- a/gui/ThemeEval.h
+++ b/gui/ThemeEval.h
@@ -26,16 +26,11 @@
#ifndef GUI_THEME_EVAL
#define GUI_THEME_EVAL
-#include "common/util.h"
-#include "common/system.h"
-#include "common/events.h"
+#include "common/scummsys.h"
#include "common/hashmap.h"
#include "common/hash-str.h"
-#include "common/xmlparser.h"
+#include "common/stack.h"
-#include "gui/ThemeEngine.h"
-#include "gui/ThemeParser.h"
-#include "gui/ThemeEval.h"
#include "gui/ThemeLayout.h"
namespace GUI {
@@ -43,7 +38,7 @@ namespace GUI {
class ThemeEval {
typedef Common::HashMap<Common::String, int> VariablesMap;
- typedef Common::HashMap<Common::String, ThemeLayout*> LayoutsMap;
+ typedef Common::HashMap<Common::String, ThemeLayout *> LayoutsMap;
public:
ThemeEval() {
@@ -105,7 +100,7 @@ private:
VariablesMap _builtin;
LayoutsMap _layouts;
- Common::Stack<ThemeLayout*> _curLayout;
+ Common::Stack<ThemeLayout *> _curLayout;
Common::String _curDialog;
};