diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-15 12:53:10 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-15 13:04:21 +0300 |
commit | 8ef332195f82d30f70435b69ba485640a19d80ed (patch) | |
tree | 589dc857a56faede78119142f077c29e1963916f /src/gui | |
parent | 5d7a02cee16478f23488495b3d031013eacea108 (diff) | |
download | plus-8ef332195f82d30f70435b69ba485640a19d80ed.tar.gz plus-8ef332195f82d30f70435b69ba485640a19d80ed.tar.bz2 plus-8ef332195f82d30f70435b69ba485640a19d80ed.tar.xz plus-8ef332195f82d30f70435b69ba485640a19d80ed.zip |
Rename being board into sell board.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/popups/beingpopup.cpp | 16 | ||||
-rw-r--r-- | src/gui/popups/beingpopup.h | 2 |
2 files changed, 9 insertions, 9 deletions
diff --git a/src/gui/popups/beingpopup.cpp b/src/gui/popups/beingpopup.cpp index 7a3194a36..2fa9368cf 100644 --- a/src/gui/popups/beingpopup.cpp +++ b/src/gui/popups/beingpopup.cpp @@ -44,7 +44,7 @@ BeingPopup::BeingPopup() : mBeingGuild(new Label(this, "A")), mBeingRank(new Label(this, "A")), mBeingComment(new Label(this, "A")), - mBeingBoard(new Label(this, "A")) + mBeingSellBoard(new Label(this, "A")) { // Being Name mBeingName->setFont(boldFont); @@ -58,7 +58,7 @@ BeingPopup::BeingPopup() : // Being's party mBeingGuild->setPosition(0, 2 * fontHeight); mBeingRank->setPosition(0, 3 * fontHeight); - mBeingBoard->setPosition(0, 4 * fontHeight); + mBeingSellBoard->setPosition(0, 4 * fontHeight); mBeingComment->setPosition(0, 5 * fontHeight); mBeingParty->setForegroundColorAll(getThemeColor(Theme::POPUP), @@ -67,7 +67,7 @@ BeingPopup::BeingPopup() : getThemeColor(Theme::POPUP_OUTLINE)); mBeingRank->setForegroundColorAll(getThemeColor(Theme::POPUP), getThemeColor(Theme::POPUP_OUTLINE)); - mBeingBoard->setForegroundColorAll(getThemeColor(Theme::POPUP), + mBeingSellBoard->setForegroundColorAll(getThemeColor(Theme::POPUP), getThemeColor(Theme::POPUP_OUTLINE)); mBeingComment->setForegroundColorAll(getThemeColor(Theme::POPUP), getThemeColor(Theme::POPUP_OUTLINE)); @@ -84,7 +84,7 @@ void BeingPopup::postInit() add(mBeingGuild); add(mBeingRank); add(mBeingComment); - add(mBeingBoard); + add(mBeingSellBoard); } void BeingPopup::show(const int x, const int y, Being *const b) @@ -98,7 +98,7 @@ void BeingPopup::show(const int x, const int y, Being *const b) Label *label1 = mBeingParty; Label *label2 = mBeingGuild; Label *label3 = mBeingRank; - Label *label4 = mBeingBoard; + Label *label4 = mBeingSellBoard; Label *label5 = mBeingComment; b->updateComment(); @@ -180,11 +180,11 @@ void BeingPopup::show(const int x, const int y, Being *const b) label3 = nullptr; } - if (!b->getBoard().empty()) + if (!b->getSellBoard().empty()) { // TRANSLATORS: being popup label - label4->setCaption(strprintf(_("Shop: %s"), - b->getBoard().c_str())); + label4->setCaption(strprintf(_("Sell shop: %s"), + b->getSellBoard().c_str())); label4->adjustSize(); } else diff --git a/src/gui/popups/beingpopup.h b/src/gui/popups/beingpopup.h index 8f43719ae..8ba82babb 100644 --- a/src/gui/popups/beingpopup.h +++ b/src/gui/popups/beingpopup.h @@ -62,7 +62,7 @@ class BeingPopup final : public Popup Label *mBeingGuild; Label *mBeingRank; Label *mBeingComment; - Label *mBeingBoard; + Label *mBeingSellBoard; }; extern BeingPopup *beingPopup; |