summaryrefslogtreecommitdiff
path: root/src/gui/viewport.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-10-19 14:41:19 +0300
committerAndrei Karas <akaras@inbox.ru>2013-10-19 15:12:25 +0300
commitfa67ace8045dfd6fab30b251722936e88dd4ea35 (patch)
tree8681703d1b64d6e37da7a626de34dc9982fbcc30 /src/gui/viewport.h
parent9fcbaf5b855efa667667e6a9be69a2140d78eaef (diff)
downloadplus-fa67ace8045dfd6fab30b251722936e88dd4ea35.tar.gz
plus-fa67ace8045dfd6fab30b251722936e88dd4ea35.tar.bz2
plus-fa67ace8045dfd6fab30b251722936e88dd4ea35.tar.xz
plus-fa67ace8045dfd6fab30b251722936e88dd4ea35.zip
fix const in definition in viewport.
Diffstat (limited to 'src/gui/viewport.h')
-rw-r--r--src/gui/viewport.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/viewport.h b/src/gui/viewport.h
index 45b5fd753..c308603c6 100644
--- a/src/gui/viewport.h
+++ b/src/gui/viewport.h
@@ -123,7 +123,7 @@ class Viewport final : public WindowContainer,
* Shows a popup for an item.
* TODO Find some way to get rid of Item here
*/
- void showPopup(Window *parent, const int x, const int y,
+ void showPopup(Window *const parent, const int x, const int y,
Item *const item, const bool isInventory = true);
/**