summaryrefslogtreecommitdiff
path: root/src/gui/debugwindow.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-10-20 17:42:43 +0300
committerAndrei Karas <akaras@inbox.ru>2012-10-20 18:56:15 +0300
commitd9994f114b1febf4c075d77c0fb3e7a44e510e20 (patch)
tree00eeae0b23ab620363dedcce448af25325b1381f /src/gui/debugwindow.cpp
parentd65f51b41a9d84c501bb25bc3849ffd8446fb2e6 (diff)
downloadplus-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.cpp6
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