diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-20 17:42:43 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-20 18:56:15 +0300 |
commit | d9994f114b1febf4c075d77c0fb3e7a44e510e20 (patch) | |
tree | 00eeae0b23ab620363dedcce448af25325b1381f /src/gui/killstats.cpp | |
parent | d65f51b41a9d84c501bb25bc3849ffd8446fb2e6 (diff) | |
download | mv-d9994f114b1febf4c075d77c0fb3e7a44e510e20.tar.gz mv-d9994f114b1febf4c075d77c0fb3e7a44e510e20.tar.bz2 mv-d9994f114b1febf4c075d77c0fb3e7a44e510e20.tar.xz mv-d9994f114b1febf4c075d77c0fb3e7a44e510e20.zip |
Fix code style and some minor issues.
Diffstat (limited to 'src/gui/killstats.cpp')
-rw-r--r-- | src/gui/killstats.cpp | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/src/gui/killstats.cpp b/src/gui/killstats.cpp index 47409fe03..b591e6c51 100644 --- a/src/gui/killstats.cpp +++ b/src/gui/killstats.cpp @@ -48,22 +48,26 @@ KillStats::KillStats(): mKillTimer(0), mResetButton(new Button(this, _("Reset stats"), "reset", this)), mTimerButton(new Button(this, _("Reset timer"), "timer", this)), - mLine4(new Label(this, strprintf(_("Kills: %s, total exp: %s"), "?", "?"))), + mLine4(new Label(this, strprintf(_("Kills: %s, total exp: %s"), + "?", "?"))), mLine5(new Label(this, strprintf(_("Avg Exp: %s"), "?"))), - mLine6(new Label(this, strprintf(_("No. of avg mob to next level: %s"), "?"))), - mLine7(new Label(this, strprintf(_("Kills/Min: %s, Exp/Min: %s"), "?", "?"))), - mExpSpeed1Label(new Label(this, strprintf(ngettext("Exp speed per %d min: %s", - "Exp speed per %d min: %s", 1), 1, "?"))), + mLine6(new Label(this, strprintf(_("No. of avg mob to next level: %s"), + "?"))), + mLine7(new Label(this, strprintf(_("Kills/Min: %s, Exp/Min: %s"), + "?", "?"))), + mExpSpeed1Label(new Label(this, strprintf(ngettext( + "Exp speed per %d min: %s", "Exp speed per %d min: %s", 1), 1, "?"))), mExpTime1Label(new Label(this, strprintf(ngettext( "Time for next level per %d min: %s", "Time for next level per %d min: %s", 1), 1, "?"))), - mExpSpeed5Label(new Label(this, strprintf(ngettext("Exp speed per %d min: %s", - "Exp speed per %d min: %s", 5), 5, "?"))), + mExpSpeed5Label(new Label(this, strprintf(ngettext( + "Exp speed per %d min: %s", "Exp speed per %d min: %s", 5), 5, "?"))), mExpTime5Label(new Label(this, strprintf(ngettext( "Time for next level per %d min: %s", "Time for next level per %d min: %s", 5), 5, "?"))), - mExpSpeed15Label(new Label(this, strprintf(ngettext("Exp speed per %d min: %s", - "Exp speed per %d min: %s", 15), 15, "?"))), + mExpSpeed15Label(new Label(this, strprintf(ngettext( + "Exp speed per %d min: %s", "Exp speed per %d min: %s", 15), + 15, "?"))), mExpTime15Label(new Label(this, strprintf(ngettext( "Time for next level per %d min: %s", "Time for next level per %d min: %s", 15), 15, "?"))), |