From 6afbd218f72684241e34e3561c900f41a5542010 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 25 Jul 2016 19:55:16 +0300 Subject: Fix too big lines. --- src/gui/windows/killstats.cpp | 9 ++++++--- src/gui/windows/ministatuswindow.cpp | 3 ++- src/gui/windows/statuswindow.cpp | 5 +++-- 3 files changed, 11 insertions(+), 6 deletions(-) (limited to 'src/gui/windows') diff --git a/src/gui/windows/killstats.cpp b/src/gui/windows/killstats.cpp index c745bc151..f3ebbdaa4 100644 --- a/src/gui/windows/killstats.cpp +++ b/src/gui/windows/killstats.cpp @@ -161,7 +161,8 @@ void KillStats::action(const ActionEvent &event) mKillCounter = 0; mExpCounter = 0; mLine3->setCaption(strprintf("1%% = %d exp, avg mob for 1%%: %s", - PlayerInfo::getAttribute(Attributes::PLAYER_EXP_NEEDED) / 100, "?")); + PlayerInfo::getAttribute(Attributes::PLAYER_EXP_NEEDED) / 100, + "?")); // TRANSLATORS: kill stats window label mLine4->setCaption(strprintf(_("Kills: %s, total exp: %s"), "?", "?")); // TRANSLATORS: kill stats window label @@ -303,7 +304,8 @@ void KillStats::recalcStats() if (curTime != 0 && mLastHost == 0xFF6B66 && cur_time > 1) { - const int newExp = PlayerInfo::getAttribute(Attributes::PLAYER_EXP_NEEDED); + const int newExp = PlayerInfo::getAttribute( + Attributes::PLAYER_EXP_NEEDED); if (m1minExpTime != 0) m1minSpeed = newExp - m1minExpNum; mStatsReUpdated = true; @@ -347,7 +349,8 @@ void KillStats::update() mExpTime1Label->setCaption(strprintf(_(" Time for next level: %s"), toString(static_cast((PlayerInfo::getAttribute( Attributes::PLAYER_EXP_NEEDED) - PlayerInfo::getAttribute( - Attributes::PLAYER_EXP)) / static_cast(m1minSpeed))).c_str())); + Attributes::PLAYER_EXP)) / + static_cast(m1minSpeed))).c_str())); } else { diff --git a/src/gui/windows/ministatuswindow.cpp b/src/gui/windows/ministatuswindow.cpp index b2d89adef..c9c6248e6 100644 --- a/src/gui/windows/ministatuswindow.cpp +++ b/src/gui/windows/ministatuswindow.cpp @@ -365,7 +365,8 @@ void MiniStatusWindow::mouseMoved(MouseEvent &event) } const int exp = PlayerInfo::getAttribute(Attributes::PLAYER_EXP); - const int expNeed = PlayerInfo::getAttribute(Attributes::PLAYER_EXP_NEEDED); + const int expNeed = PlayerInfo::getAttribute( + Attributes::PLAYER_EXP_NEEDED); if (exp > expNeed) { textPopup->show(x + rect.x, y + rect.y, level, strprintf("%d/%d", diff --git a/src/gui/windows/statuswindow.cpp b/src/gui/windows/statuswindow.cpp index 26c7acb39..c762084fd 100644 --- a/src/gui/windows/statuswindow.cpp +++ b/src/gui/windows/statuswindow.cpp @@ -121,8 +121,9 @@ StatusWindow::StatusWindow() : max = PlayerInfo::getAttribute(Attributes::PLAYER_EXP_NEEDED); mXpBar = new ProgressBar(this, - max ? static_cast(PlayerInfo::getAttribute(Attributes::PLAYER_EXP)) - / static_cast(max) : static_cast(0), + max ? + static_cast(PlayerInfo::getAttribute(Attributes::PLAYER_EXP)) / + static_cast(max) : static_cast(0), 80, 0, ProgressColorId::PROG_EXP, -- cgit v1.2.3-70-g09d2