diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-01-05 21:16:23 +0100 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-02-09 19:45:29 +0100 |
commit | 0fd9aef8bf376d44132edded2cdcb41ba7ee5b2f (patch) | |
tree | 24c19cd4af285fd8ede2d9d866668d005b5f6e26 /src/gui/sell.cpp | |
parent | 1a769276ce68285040bffd63bd1c01495ce411a7 (diff) | |
download | mana-0fd9aef8bf376d44132edded2cdcb41ba7ee5b2f.tar.gz mana-0fd9aef8bf376d44132edded2cdcb41ba7ee5b2f.tar.bz2 mana-0fd9aef8bf376d44132edded2cdcb41ba7ee5b2f.tar.xz mana-0fd9aef8bf376d44132edded2cdcb41ba7ee5b2f.zip |
Mostly whitespace and formatting changes
(merged from eAthena client)
Diffstat (limited to 'src/gui/sell.cpp')
-rw-r--r-- | src/gui/sell.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gui/sell.cpp b/src/gui/sell.cpp index 24391458..9aee4bee 100644 --- a/src/gui/sell.cpp +++ b/src/gui/sell.cpp @@ -202,8 +202,7 @@ void SellDialog::setMoney(int amount) mShopItemList->setPlayersMoney(amount); } -void -SellDialog::updateButtonsAndLabels() +void SellDialog::updateButtonsAndLabels() { int selectedItem = mShopItemList->getSelected(); int income = 0; @@ -211,7 +210,6 @@ SellDialog::updateButtonsAndLabels() if (selectedItem > -1) { const ItemInfo &info = mShopItems->at(selectedItem)->getInfo(); - mItemDescLabel->setCaption (strprintf(_("Description: %s"), info.getDescription().c_str())); mItemEffectLabel->setCaption |