summaryrefslogtreecommitdiff
path: root/src/gui/trade.cpp
diff options
context:
space:
mode:
authorDennis Friis <peavey@placid.dk>2008-04-26 17:33:02 +0000
committerDennis Friis <peavey@placid.dk>2008-04-26 17:33:02 +0000
commit1edab2457fa2dbf67ced0bc871e02857a58f5aa3 (patch)
treed78b3b584041872d727336e89d9781936599d00d /src/gui/trade.cpp
parent8c3ddf08fa76b5e39c1e3854a1c5fb06029772a2 (diff)
downloadMana-1edab2457fa2dbf67ced0bc871e02857a58f5aa3.tar.gz
Mana-1edab2457fa2dbf67ced0bc871e02857a58f5aa3.tar.bz2
Mana-1edab2457fa2dbf67ced0bc871e02857a58f5aa3.tar.xz
Mana-1edab2457fa2dbf67ced0bc871e02857a58f5aa3.zip
Text fix: zeny to GP.
Diffstat (limited to 'src/gui/trade.cpp')
-rw-r--r--src/gui/trade.cpp6
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("");
}