diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-02-06 16:58:18 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-02-06 16:58:18 +0300 |
commit | d557ce63e240960746e48c678b4a08ba66f7fe40 (patch) | |
tree | 8dfa33e155d7ea2145df9056895f0c1293155349 /src/gui/windows | |
parent | 8e243bbcdae592e1c003e5d2c37c8f0e8f1304e7 (diff) | |
download | ManaVerse-d557ce63e240960746e48c678b4a08ba66f7fe40.tar.gz ManaVerse-d557ce63e240960746e48c678b4a08ba66f7fe40.tar.bz2 ManaVerse-d557ce63e240960746e48c678b4a08ba66f7fe40.tar.xz ManaVerse-d557ce63e240960746e48c678b4a08ba66f7fe40.zip |
Add custom currency also into shop items list.
Diffstat (limited to 'src/gui/windows')
-rw-r--r-- | src/gui/windows/buydialog.cpp | 3 | ||||
-rw-r--r-- | src/gui/windows/shopwindow.cpp | 7 |
2 files changed, 6 insertions, 4 deletions
diff --git a/src/gui/windows/buydialog.cpp b/src/gui/windows/buydialog.cpp index a0ec8d05c..bddd8bba6 100644 --- a/src/gui/windows/buydialog.cpp +++ b/src/gui/windows/buydialog.cpp @@ -296,7 +296,8 @@ void BuyDialog::init() if (setupWindow) setupWindow->registerWindowForReset(this); - mShopItems = new ShopItems; + mShopItems = new ShopItems(false, + mCurrency); CREATEWIDGETV(mShopItemList, ShopListBox, this, mShopItems, mShopItems, ShopListBoxType::Unknown); diff --git a/src/gui/windows/shopwindow.cpp b/src/gui/windows/shopwindow.cpp index b09b44a46..f308cb5b5 100644 --- a/src/gui/windows/shopwindow.cpp +++ b/src/gui/windows/shopwindow.cpp @@ -107,8 +107,8 @@ ShopWindow::ShopWindow() : SelectionListener(), // TRANSLATORS: shop window button mCloseButton(new Button(this, _("Close"), "close", this)), - mBuyShopItems(new ShopItems), - mSellShopItems(new ShopItems), + mBuyShopItems(new ShopItems(false, DEFAULT_CURRENCY)), + mSellShopItems(new ShopItems(false, DEFAULT_CURRENCY)), mTradeItem(nullptr), mBuyShopItemList(CREATEWIDGETR(ShopListBox, this, mBuyShopItems, mBuyShopItems, ShopListBoxType::BuyShop)), @@ -952,7 +952,8 @@ void ShopWindow::processRequest(const std::string &nick, std::string data, ItemType::Unknown, ItemColor_one, amount, - price); + price, + DEFAULT_CURRENCY); if (mode == BUY) { |