diff options
Diffstat (limited to 'gui/newgui.h')
-rw-r--r-- | gui/newgui.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gui/newgui.h b/gui/newgui.h index 5fabe4ea1f..b7ef589f07 100644 --- a/gui/newgui.h +++ b/gui/newgui.h @@ -79,8 +79,7 @@ public: bool loadNewTheme(const Common::String &file); Theme *theme() { return _theme; } - Eval *evaluator() { return _theme->_evaluator; } - ThemeEval *xmlEval() { return (ThemeEval*)_theme->evaluator(); } + ThemeEval *xmlEval() { return _theme->evaluator(); } const Graphics::Font &getFont(Theme::FontStyle style = Theme::kFontStyleBold) const { return *(_theme->getFont(style)); } int getFontHeight(Theme::FontStyle style = Theme::kFontStyleBold) const { return _theme->getFontHeight(style); } |