summaryrefslogtreecommitdiff
path: root/src/gui/popups
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-10-18 20:04:09 +0300
committerAndrei Karas <akaras@inbox.ru>2013-10-19 15:12:21 +0300
commit41d3b2bdf3af75720b5a4463be0ba6d234c61261 (patch)
tree561316ef10355faaa854bd5f5fad9646901bbaed /src/gui/popups
parent9c847001516949e21a522ae53a0e07c556b4116d (diff)
downloadplus-41d3b2bdf3af75720b5a4463be0ba6d234c61261.tar.gz
plus-41d3b2bdf3af75720b5a4463be0ba6d234c61261.tar.bz2
plus-41d3b2bdf3af75720b5a4463be0ba6d234c61261.tar.xz
plus-41d3b2bdf3af75720b5a4463be0ba6d234c61261.zip
fix const in definition in popupmenu.
Diffstat (limited to 'src/gui/popups')
-rw-r--r--src/gui/popups/popupmenu.cpp3
-rw-r--r--src/gui/popups/popupmenu.h8
2 files changed, 7 insertions, 4 deletions
diff --git a/src/gui/popups/popupmenu.cpp b/src/gui/popups/popupmenu.cpp
index f151eae01..ce96d2abd 100644
--- a/src/gui/popups/popupmenu.cpp
+++ b/src/gui/popups/popupmenu.cpp
@@ -2271,7 +2271,8 @@ void PopupMenu::showAttackMonsterPopup(const int x, const int y,
showPopup(x, y);
}
-void PopupMenu::showPickupItemPopup(const int x, const int y, std::string name)
+void PopupMenu::showPickupItemPopup(const int x, const int y,
+ const std::string &name)
{
if (!player_node || !actorSpriteManager)
return;
diff --git a/src/gui/popups/popupmenu.h b/src/gui/popups/popupmenu.h
index 4bb7e2e04..4c1a61aff 100644
--- a/src/gui/popups/popupmenu.h
+++ b/src/gui/popups/popupmenu.h
@@ -151,10 +151,12 @@ class PopupMenu final : public Popup, public LinkHandler
void showSpellPopup(const int x, const int y, TextCommand *const cmd);
- void showAttackMonsterPopup(int x, int y, const std::string &name,
- int type);
+ void showAttackMonsterPopup(const int x, const int y,
+ const std::string &name,
+ const int type);
- void showPickupItemPopup(int x, int y, std::string name);
+ void showPickupItemPopup(const int x, const int y,
+ const std::string &name);
void showUndressPopup(const int x, const int y,
const Being *const being,