aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/cache.h
diff options
context:
space:
mode:
authorMartin Kiewitz2010-02-04 22:17:58 +0000
committerMartin Kiewitz2010-02-04 22:17:58 +0000
commitcabd18da9e6a973e34bd841e4c30069ddd2a4808 (patch)
tree70c9bc813d7d53fa3a3cb799807371c325b9866d /engines/sci/graphics/cache.h
parentc336204a3f324d1bb78287967e5c1d36f6473f7c (diff)
downloadscummvm-rg350-cabd18da9e6a973e34bd841e4c30069ddd2a4808.tar.gz
scummvm-rg350-cabd18da9e6a973e34bd841e4c30069ddd2a4808.tar.bz2
scummvm-rg350-cabd18da9e6a973e34bd841e4c30069ddd2a4808.zip
SCI: renaming class View to GfxView
svn-id: r47891
Diffstat (limited to 'engines/sci/graphics/cache.h')
-rw-r--r--engines/sci/graphics/cache.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/graphics/cache.h b/engines/sci/graphics/cache.h
index d15d5b25c3..c444b69c3c 100644
--- a/engines/sci/graphics/cache.h
+++ b/engines/sci/graphics/cache.h
@@ -33,10 +33,10 @@
namespace Sci {
class Font;
-class View;
+class GfxView;
typedef Common::HashMap<int, Font *> FontCache;
-typedef Common::HashMap<int, View *> ViewCache;
+typedef Common::HashMap<int, GfxView *> ViewCache;
class GfxCache {
public:
@@ -45,7 +45,7 @@ public:
Font *getFont(GuiResourceId fontId);
- View *getView(GuiResourceId viewId);
+ GfxView *getView(GuiResourceId viewId);
int16 kernelViewGetCelWidth(GuiResourceId viewId, int16 loopNo, int16 celNo);
int16 kernelViewGetCelHeight(GuiResourceId viewId, int16 loopNo, int16 celNo);
int16 kernelViewGetLoopCount(GuiResourceId viewId);