diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-23 05:12:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-23 05:12:23 +0300 |
commit | 144484e103cf468dbc70ecdf285de233d28aa957 (patch) | |
tree | ff9d8034e0f4a66439de1635427aad007f6919dd /src/game.cpp | |
parent | d10950aba8576a48314f05632935c38f99066591 (diff) | |
download | mv-144484e103cf468dbc70ecdf285de233d28aa957.tar.gz mv-144484e103cf468dbc70ecdf285de233d28aa957.tar.bz2 mv-144484e103cf468dbc70ecdf285de233d28aa957.tar.xz mv-144484e103cf468dbc70ecdf285de233d28aa957.zip |
Remove default parameters from equipmentwindow.
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 7 |
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); |