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/debugwindow.cpp | |
parent | d65f51b41a9d84c501bb25bc3849ffd8446fb2e6 (diff) | |
download | plus-d9994f114b1febf4c075d77c0fb3e7a44e510e20.tar.gz plus-d9994f114b1febf4c075d77c0fb3e7a44e510e20.tar.bz2 plus-d9994f114b1febf4c075d77c0fb3e7a44e510e20.tar.xz plus-d9994f114b1febf4c075d77c0fb3e7a44e510e20.zip |
Fix code style and some minor issues.
Diffstat (limited to 'src/gui/debugwindow.cpp')
-rw-r--r-- | src/gui/debugwindow.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/debugwindow.cpp b/src/gui/debugwindow.cpp index c78d3e12d..08ea48dd3 100644 --- a/src/gui/debugwindow.cpp +++ b/src/gui/debugwindow.cpp @@ -139,7 +139,8 @@ MapDebugTab::MapDebugTab(const Widget2 *const widget) : mMusicFileLabel(new Label(this, strprintf(_("Music:")))), mMapLabel(new Label(this, strprintf(_("Map:")))), mMinimapLabel(new Label(this, strprintf(_("Minimap:")))), - mTileMouseLabel(new Label(this, strprintf("%s (%d, %d)", _("Cursor:"), 0, 0))), + mTileMouseLabel(new Label(this, strprintf("%s (%d, %d)", + _("Cursor:"), 0, 0))), mParticleCountLabel(new Label(this, strprintf("%s %d", _("Particle count:"), 88888))), mMapActorCountLabel(new Label(this, strprintf("%s %d", @@ -182,7 +183,8 @@ MapDebugTab::MapDebugTab(const Widget2 *const widget) : place(0, 8, mMapActorCountLabel, 2); #ifdef USE_OPENGL #ifdef DEBUG_OPENGL_LEAKS - mTexturesLabel = new Label(this, strprintf("%s %s", _("Textures count:"), "?")); + mTexturesLabel = new Label(this, strprintf("%s %s", + _("Textures count:"), "?")); place(0, 9, mTexturesLabel, 2); #endif #endif |