aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/ad/ad_region.h
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-12-09 12:26:43 +0100
committerEinar Johan Trøan Sømåen2012-12-09 12:26:43 +0100
commitae4380b88f4ef2d26acca31a38c3722611b7585f (patch)
tree3d63b356c7480e7643a5ad574df43c6b6051461e /engines/wintermute/ad/ad_region.h
parent233ca0be4ad72b3b262f207ec0eef1d551b93184 (diff)
downloadscummvm-rg350-ae4380b88f4ef2d26acca31a38c3722611b7585f.tar.gz
scummvm-rg350-ae4380b88f4ef2d26acca31a38c3722611b7585f.tar.bz2
scummvm-rg350-ae4380b88f4ef2d26acca31a38c3722611b7585f.zip
WINTERMUTE: Make getters const in AdRegion
Diffstat (limited to 'engines/wintermute/ad/ad_region.h')
-rw-r--r--engines/wintermute/ad/ad_region.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/wintermute/ad/ad_region.h b/engines/wintermute/ad/ad_region.h
index 454e4bdebe..960dde5f15 100644
--- a/engines/wintermute/ad/ad_region.h
+++ b/engines/wintermute/ad/ad_region.h
@@ -43,10 +43,10 @@ public:
bool loadBuffer(byte *buffer, bool complete = true);
virtual bool saveAsText(BaseDynamicBuffer *buffer, int indent);
- bool hasDecoration();
- bool isBlocked();
- uint32 getAlpha();
- float getZoom();
+ bool hasDecoration() const;
+ bool isBlocked() const;
+ uint32 getAlpha() const;
+ float getZoom() const;
// scripting interface
virtual ScValue *scGetProperty(const Common::String &name);
virtual bool scSetProperty(const char *name, ScValue *value);