diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-08-28 01:59:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-08-28 01:59:04 +0300 |
commit | c79403e1341ac533df1771b866d1f5cee15e12b5 (patch) | |
tree | 5bed6dfb44f7fce0432bd7a7a28d2d23db07ce80 /src/gui/setup.h | |
parent | 7c79aa2b8e484319e3e511fa21db6d2448347024 (diff) | |
download | plus-c79403e1341ac533df1771b866d1f5cee15e12b5.tar.gz plus-c79403e1341ac533df1771b866d1f5cee15e12b5.tar.bz2 plus-c79403e1341ac533df1771b866d1f5cee15e12b5.tar.xz plus-c79403e1341ac533df1771b866d1f5cee15e12b5.zip |
Add const to more classes.
Diffstat (limited to 'src/gui/setup.h')
-rw-r--r-- | src/gui/setup.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/setup.h b/src/gui/setup.h index 975cf297b..71b9594b6 100644 --- a/src/gui/setup.h +++ b/src/gui/setup.h @@ -60,11 +60,11 @@ class Setup : public Window, public gcn::ActionListener /** * Enables the reset button when in game. */ - void setInGame(bool inGame); + void setInGame(const bool inGame); void externalUpdate(); - void registerWindowForReset(Window *window); + void registerWindowForReset(Window *const window); void clearWindowsForReset() { mWindowsToReset.clear(); } |