From e082aa3439e3ffb4b69c491be1dc881e9c14abce Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 12 Nov 2015 18:23:47 +0300 Subject: Remove old manaserv related code from status window. --- src/gui/windows/statuswindow.cpp | 43 ++-------------------------------------- 1 file changed, 2 insertions(+), 41 deletions(-) (limited to 'src/gui/windows/statuswindow.cpp') diff --git a/src/gui/windows/statuswindow.cpp b/src/gui/windows/statuswindow.cpp index ea73c46b5..53240a0c7 100644 --- a/src/gui/windows/statuswindow.cpp +++ b/src/gui/windows/statuswindow.cpp @@ -83,7 +83,6 @@ StatusWindow::StatusWindow() : mDAttrCont(new VertContainer(this, 32)), mDAttrScroll(new ScrollArea(this, mDAttrCont, false)), mCharacterPointsLabel(new Label(this, "C")), - mCorrectionPointsLabel(nullptr), // TRANSLATORS: status window button mCopyButton(new Button(this, _("Copy to chat"), "copy", this)), mAttrs() @@ -220,12 +219,6 @@ StatusWindow::StatusWindow() : place(0, 6, mCharacterPointsLabel, 5); place(0, 5, mCopyButton); - if (playerHandler->canCorrectAttributes()) - { - mCorrectionPointsLabel = new Label(this, "C"); - place(0, 7, mCorrectionPointsLabel, 5); - } - loadWindowState(); enableVisibleSound(true); @@ -368,11 +361,8 @@ void StatusWindow::attributeChanged(const AttributesT id, } break; + // ?? case Attributes::CORR_POINTS: - mCorrectionPointsLabel->setCaption(strprintf( - // TRANSLATORS: status window label - _("Correction points: %d"), newVal)); - mCorrectionPointsLabel->adjustSize(); // Update all attributes for (Attrs::const_iterator it = mAttrs.begin(); it != mAttrs.end(); ++it) @@ -761,7 +751,6 @@ ChangeDisplay::ChangeDisplay(const Widget2 *const widget, mNeeded(1), // TRANSLATORS: status window label mPoints(new Label(this, _("Max"))), - mDec(nullptr), // TRANSLATORS: status window label (plus sign) mInc(new Button(this, _("+"), "inc", this)) { @@ -772,15 +761,6 @@ ChangeDisplay::ChangeDisplay(const Widget2 *const widget, place(4, 0, mValue, 2); place(6, 0, mInc); place(7, 0, mPoints); - - if (playerHandler->canCorrectAttributes()) - { - // TRANSLATORS: status window label (minus sign) - mDec = new Button(this, _("-"), "dec", this); - mDec->setWidth(mInc->getWidth()); - - place(3, 0, mDec); - } } std::string ChangeDisplay::update() @@ -795,9 +775,6 @@ std::string ChangeDisplay::update() mPoints->setCaption(_("Max")); } - if (mDec) - mDec->setEnabled(PlayerInfo::getAttribute(Attributes::CORR_POINTS)); - mInc->setEnabled(PlayerInfo::getAttribute(Attributes::CHAR_POINTS) >= mNeeded && mNeeded > 0); @@ -812,23 +789,7 @@ void ChangeDisplay::setPointsNeeded(const int needed) void ChangeDisplay::action(const ActionEvent &event) { - if (playerHandler->canCorrectAttributes() && - event.getSource() == mDec) - { - const int newcorrpoints = PlayerInfo::getAttribute( - Attributes::CORR_POINTS); - PlayerInfo::setAttribute(Attributes::CORR_POINTS, newcorrpoints - 1); - - const int newpoints = PlayerInfo::getAttribute( - Attributes::CHAR_POINTS) + 1; - PlayerInfo::setAttribute(Attributes::CHAR_POINTS, newpoints); - - const int newbase = PlayerInfo::getStatBase(mId) - 1; - PlayerInfo::setStatBase(mId, newbase); - - playerHandler->decreaseAttribute(mId); - } - else if (event.getSource() == mInc) + if (event.getSource() == mInc) { int cnt = 1; if (config.getBoolValue("quickStats")) -- cgit v1.2.3-60-g2f50