summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-23 05:12:23 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-23 05:12:23 +0300
commit144484e103cf468dbc70ecdf285de233d28aa957 (patch)
treeff9d8034e0f4a66439de1635427aad007f6919dd /src/game.cpp
parentd10950aba8576a48314f05632935c38f99066591 (diff)
downloadplus-144484e103cf468dbc70ecdf285de233d28aa957.tar.gz
plus-144484e103cf468dbc70ecdf285de233d28aa957.tar.bz2
plus-144484e103cf468dbc70ecdf285de233d28aa957.tar.xz
plus-144484e103cf468dbc70ecdf285de233d28aa957.zip
Remove default parameters from equipmentwindow.
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/game.cpp b/src/game.cpp
index f625cc9e2..467c960e3 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -210,9 +210,12 @@ static void createGuiWindows()
CREATEWIDGETV0(tradeWindow, TradeWindow);
CREATEWIDGETV(equipmentWindow, EquipmentWindow,
PlayerInfo::getEquipment(),
- localPlayer);
+ localPlayer,
+ false);
CREATEWIDGETV(beingEquipmentWindow, EquipmentWindow,
- nullptr, nullptr, true);
+ nullptr,
+ nullptr,
+ true);
beingEquipmentWindow->setVisible(Visible_false);
CREATEWIDGETV0(statusWindow, StatusWindow);
CREATEWIDGETV0(miniStatusWindow, MiniStatusWindow);