diff options
author | Dennis Friis <peavey@placid.dk> | 2008-04-26 17:33:02 +0000 |
---|---|---|
committer | Dennis Friis <peavey@placid.dk> | 2008-04-26 17:33:02 +0000 |
commit | 1edab2457fa2dbf67ced0bc871e02857a58f5aa3 (patch) | |
tree | d78b3b584041872d727336e89d9781936599d00d /src/gui/trade.cpp | |
parent | 8c3ddf08fa76b5e39c1e3854a1c5fb06029772a2 (diff) | |
download | mana-client-1edab2457fa2dbf67ced0bc871e02857a58f5aa3.tar.gz mana-client-1edab2457fa2dbf67ced0bc871e02857a58f5aa3.tar.bz2 mana-client-1edab2457fa2dbf67ced0bc871e02857a58f5aa3.tar.xz mana-client-1edab2457fa2dbf67ced0bc871e02857a58f5aa3.zip |
Text fix: zeny to GP.
Diffstat (limited to 'src/gui/trade.cpp')
-rw-r--r-- | src/gui/trade.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/trade.cpp b/src/gui/trade.cpp index 383d6582..db33fb12 100644 --- a/src/gui/trade.cpp +++ b/src/gui/trade.cpp @@ -73,7 +73,7 @@ TradeWindow::TradeWindow(Network *network): mPartnerScroll = new ScrollArea(mPartnerItemContainer); mPartnerScroll->setPosition(8, 64); - mMoneyLabel = new gcn::Label("You get: 0z"); + mMoneyLabel = new gcn::Label("You get: 0 GP"); mMoneyLabel2 = new gcn::Label("You give:"); mMoneyField = new TextField(); @@ -136,7 +136,7 @@ TradeWindow::~TradeWindow() void TradeWindow::addMoney(int amount) { - mMoneyLabel->setCaption("You get: " + toString(amount) + "z"); + mMoneyLabel->setCaption("You get: " + toString(amount) + " GP"); mMoneyLabel->adjustSize(); } @@ -184,7 +184,7 @@ void TradeWindow::reset() mOkButton->setEnabled(true); mOkOther = false; mOkMe = false; - mMoneyLabel->setCaption("You get: 0z"); + mMoneyLabel->setCaption("You get: 0 GP"); mMoneyField->setEnabled(true); mMoneyField->setText(""); } |