summaryrefslogtreecommitdiff
path: root/src/gui/windows/shopselldialog.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-22 22:45:19 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-22 22:45:19 +0300
commit13ca85f55e9036542c31caf2429a05b77bdc10da (patch)
tree80427aaa52ca9f39e007e9547d0ac6588f9863da /src/gui/windows/shopselldialog.cpp
parentdf9a0e97043897ee2919664067ed2e452a09c207 (diff)
downloadManaVerse-13ca85f55e9036542c31caf2429a05b77bdc10da.tar.gz
ManaVerse-13ca85f55e9036542c31caf2429a05b77bdc10da.tar.bz2
ManaVerse-13ca85f55e9036542c31caf2429a05b77bdc10da.tar.xz
ManaVerse-13ca85f55e9036542c31caf2429a05b77bdc10da.zip
Fix compilation warnings.
Diffstat (limited to 'src/gui/windows/shopselldialog.cpp')
-rw-r--r--src/gui/windows/shopselldialog.cpp3
1 files changed, 1 insertions, 2 deletions
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()))