summaryrefslogtreecommitdiff
path: root/src/gui/widgets/shoplistbox.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/widgets/shoplistbox.cpp
parent144484e103cf468dbc70ecdf285de233d28aa957 (diff)
downloadManaVerse-51c1436f27042c1a84aa3d18aa500385abc7f57b.tar.gz
ManaVerse-51c1436f27042c1a84aa3d18aa500385abc7f57b.tar.bz2
ManaVerse-51c1436f27042c1a84aa3d18aa500385abc7f57b.tar.xz
ManaVerse-51c1436f27042c1a84aa3d18aa500385abc7f57b.zip
Remove default parameters from itemamountwindow.
Diffstat (limited to 'src/gui/widgets/shoplistbox.cpp')
-rw-r--r--src/gui/widgets/shoplistbox.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/gui/widgets/shoplistbox.cpp b/src/gui/widgets/shoplistbox.cpp
index 3df46b854..ea3f46e87 100644
--- a/src/gui/widgets/shoplistbox.cpp
+++ b/src/gui/widgets/shoplistbox.cpp
@@ -273,14 +273,18 @@ void ShopListBox::mouseReleased(MouseEvent& event)
ItemAmountWindow::showWindow(
ItemAmountWindowUsage::ShopBuyAdd,
nullptr,
- item);
+ item,
+ 0,
+ 0);
}
else
{
ItemAmountWindow::showWindow(
ItemAmountWindowUsage::ShopSellAdd,
nullptr,
- item);
+ item,
+ 0,
+ 0);
}
}