aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/ui/ui_window.cpp
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2013-09-30 11:12:25 +0200
committerEinar Johan Trøan Sømåen2013-09-30 11:12:25 +0200
commit5afb297e396fa3ad40559e552008741c6cd6ba66 (patch)
treef93699e55a7373dc14f7699cd5cd219881d80216 /engines/wintermute/ui/ui_window.cpp
parentf7a9e921aee9371a9defe5acaf4a685ada76fcfb (diff)
downloadscummvm-rg350-5afb297e396fa3ad40559e552008741c6cd6ba66.tar.gz
scummvm-rg350-5afb297e396fa3ad40559e552008741c6cd6ba66.tar.bz2
scummvm-rg350-5afb297e396fa3ad40559e552008741c6cd6ba66.zip
WINTERMUTE: Constify some getters in TransparentSurface, UIObject and UIWindow
Diffstat (limited to 'engines/wintermute/ui/ui_window.cpp')
-rw-r--r--engines/wintermute/ui/ui_window.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wintermute/ui/ui_window.cpp b/engines/wintermute/ui/ui_window.cpp
index c098415367..a54f7c5da1 100644
--- a/engines/wintermute/ui/ui_window.cpp
+++ b/engines/wintermute/ui/ui_window.cpp
@@ -1442,11 +1442,11 @@ bool UIWindow::getWindowObjects(BaseArray<UIObject *> &objects, bool interactive
return STATUS_OK;
}
-bool UIWindow::getInGame() {
+bool UIWindow::getInGame() const {
return _inGame;
}
-TWindowMode UIWindow::getMode() {
+TWindowMode UIWindow::getMode() const {
return _mode;
}