diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-16 16:18:29 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-16 16:18:29 +0300 |
commit | c94a736ddcf5299b6eacb9cfd5c09c6266dd78aa (patch) | |
tree | 356f87aac5b794fa4e0903a15ec83f55f52f7b00 /src/gui/windows/shopwindow.cpp | |
parent | e811e48760c7f9a22615f40a0b025d34b9f12eb0 (diff) | |
download | plus-c94a736ddcf5299b6eacb9cfd5c09c6266dd78aa.tar.gz plus-c94a736ddcf5299b6eacb9cfd5c09c6266dd78aa.tar.bz2 plus-c94a736ddcf5299b6eacb9cfd5c09c6266dd78aa.tar.xz plus-c94a736ddcf5299b6eacb9cfd5c09c6266dd78aa.zip |
Move itemamountwindowusage enum into separate file.
Also convert it to strong typed enum.
Diffstat (limited to 'src/gui/windows/shopwindow.cpp')
-rw-r--r-- | src/gui/windows/shopwindow.cpp | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/gui/windows/shopwindow.cpp b/src/gui/windows/shopwindow.cpp index eb07c90dc..6b7994854 100644 --- a/src/gui/windows/shopwindow.cpp +++ b/src/gui/windows/shopwindow.cpp @@ -400,13 +400,18 @@ void ShopWindow::action(const ActionEvent &event) { if (isBuySelected) { - ItemAmountWindow::showWindow(ItemAmountWindow::ShopBuyAdd, - this, item, sumAmount(item)); + ItemAmountWindow::showWindow(ItemAmountWindowUsage::ShopBuyAdd, + this, + item, + sumAmount(item)); } else { - ItemAmountWindow::showWindow(ItemAmountWindow::ShopSellAdd, - this, item, sumAmount(item)); + ItemAmountWindow::showWindow( + ItemAmountWindowUsage::ShopSellAdd, + this, + item, + sumAmount(item)); } } } |