diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-01-15 20:21:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-01-15 20:21:16 +0300 |
commit | 516d635b6cbce6e38cc3e4f227f6ab0b073925b9 (patch) | |
tree | 61f4e9eab9bae255375e94c29d4663b5d8f217c5 /src/gui/widgets/tabs/debugwindowtabs.cpp | |
parent | 0e7b238a3794a9d2bb8dbf66adfe65bf6f1f4046 (diff) | |
download | plus-516d635b6cbce6e38cc3e4f227f6ab0b073925b9.tar.gz plus-516d635b6cbce6e38cc3e4f227f6ab0b073925b9.tar.bz2 plus-516d635b6cbce6e38cc3e4f227f6ab0b073925b9.tar.xz plus-516d635b6cbce6e38cc3e4f227f6ab0b073925b9.zip |
Fix code style.
Diffstat (limited to 'src/gui/widgets/tabs/debugwindowtabs.cpp')
-rw-r--r-- | src/gui/widgets/tabs/debugwindowtabs.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/widgets/tabs/debugwindowtabs.cpp b/src/gui/widgets/tabs/debugwindowtabs.cpp index c46954f20..761ee93e4 100644 --- a/src/gui/widgets/tabs/debugwindowtabs.cpp +++ b/src/gui/widgets/tabs/debugwindowtabs.cpp @@ -51,11 +51,11 @@ MapDebugTab::MapDebugTab(const Widget2 *const widget) : DebugTab(widget), // TRANSLATORS: debug window label - mMusicFileLabel(new Label(this, strprintf(_("Music:")))), + mMusicFileLabel(new Label(this, _("Music:"))), // TRANSLATORS: debug window label - mMapLabel(new Label(this, strprintf(_("Map:")))), + mMapLabel(new Label(this, _("Map:"))), // TRANSLATORS: debug window label - mMinimapLabel(new Label(this, strprintf(_("Minimap:")))), + mMinimapLabel(new Label(this, _("Minimap:"))), mTileMouseLabel(new Label(this, strprintf("%s (%d, %d)", // TRANSLATORS: debug window label _("Cursor:"), 0, 0))), |