summaryrefslogtreecommitdiff
path: root/src/gui/windows/shopwindow.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-23 06:35:15 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-23 06:35:15 +0300
commit51c1436f27042c1a84aa3d18aa500385abc7f57b (patch)
tree57271524323982261ed182a73056109591291553 /src/gui/windows/shopwindow.cpp
parent144484e103cf468dbc70ecdf285de233d28aa957 (diff)
downloadplus-51c1436f27042c1a84aa3d18aa500385abc7f57b.tar.gz
plus-51c1436f27042c1a84aa3d18aa500385abc7f57b.tar.bz2
plus-51c1436f27042c1a84aa3d18aa500385abc7f57b.tar.xz
plus-51c1436f27042c1a84aa3d18aa500385abc7f57b.zip
Remove default parameters from itemamountwindow.
Diffstat (limited to 'src/gui/windows/shopwindow.cpp')
-rw-r--r--src/gui/windows/shopwindow.cpp6
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);
}
}
}