diff options
Diffstat (limited to 'src/gui/windows')
-rw-r--r-- | src/gui/windows/eggselectiondialog.cpp | 3 | ||||
-rw-r--r-- | src/gui/windows/shopselldialog.cpp | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/gui/windows/eggselectiondialog.cpp b/src/gui/windows/eggselectiondialog.cpp index 22527e3c6..b4149b6b3 100644 --- a/src/gui/windows/eggselectiondialog.cpp +++ b/src/gui/windows/eggselectiondialog.cpp @@ -66,12 +66,11 @@ void EggSelectionDialog::initButtons() mShopItems->setMergeDuplicates(false); } -void EggSelectionDialog::sellAction(const ActionEvent &event) +void EggSelectionDialog::sellAction(const ActionEvent &event A_UNUSED) { if (mAmountItems <= 0 || mAmountItems > mMaxItems) return; - const std::string &eventId = event.getId(); const int selectedItem = mShopItemList->getSelected(); ShopItem *const item = mShopItems->at(selectedItem); if (!item) diff --git a/src/gui/windows/shopselldialog.cpp b/src/gui/windows/shopselldialog.cpp index 08abd6047..a48a83b75 100644 --- a/src/gui/windows/shopselldialog.cpp +++ b/src/gui/windows/shopselldialog.cpp @@ -59,12 +59,11 @@ ShopSellDialog::ShopSellDialog(const std::string &nick) : { } -void ShopSellDialog::sellAction(const ActionEvent &event) +void ShopSellDialog::sellAction(const ActionEvent &event A_UNUSED) { if (mAmountItems <= 0 || mAmountItems > mMaxItems) return; - const std::string &eventId = event.getId(); const int selectedItem = mShopItemList->getSelected(); ShopItem *const item = mShopItems->at(selectedItem); if (!item || PlayerInfo::isItemProtected(item->getId())) |