diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-23 06:35:15 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-23 06:35:15 +0300 |
commit | 51c1436f27042c1a84aa3d18aa500385abc7f57b (patch) | |
tree | 57271524323982261ed182a73056109591291553 /src/gui/windows/shopwindow.cpp | |
parent | 144484e103cf468dbc70ecdf285de233d28aa957 (diff) | |
download | manaverse-51c1436f27042c1a84aa3d18aa500385abc7f57b.tar.gz manaverse-51c1436f27042c1a84aa3d18aa500385abc7f57b.tar.bz2 manaverse-51c1436f27042c1a84aa3d18aa500385abc7f57b.tar.xz manaverse-51c1436f27042c1a84aa3d18aa500385abc7f57b.zip |
Remove default parameters from itemamountwindow.
Diffstat (limited to 'src/gui/windows/shopwindow.cpp')
-rw-r--r-- | src/gui/windows/shopwindow.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/windows/shopwindow.cpp b/src/gui/windows/shopwindow.cpp index 757ffd902..d3b37b039 100644 --- a/src/gui/windows/shopwindow.cpp +++ b/src/gui/windows/shopwindow.cpp @@ -399,7 +399,8 @@ void ShopWindow::action(const ActionEvent &event) ItemAmountWindow::showWindow(ItemAmountWindowUsage::ShopBuyAdd, this, item, - sumAmount(item)); + sumAmount(item), + 0); } else { @@ -407,7 +408,8 @@ void ShopWindow::action(const ActionEvent &event) ItemAmountWindowUsage::ShopSellAdd, this, item, - sumAmount(item)); + sumAmount(item), + 0); } } } |