summaryrefslogtreecommitdiff
path: root/src/gui/debugwindow.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-09-06 20:57:24 +0300
committerAndrei Karas <akaras@inbox.ru>2012-09-06 22:58:35 +0300
commit4ad3cd45f7a8c3f6d1817705c06223d1a2798a2f (patch)
treea776928bb1339cdd29eb2e54d50eb3fa6e3448d7 /src/gui/debugwindow.h
parent22ed653d8b630c813333d5c73a4ca02dede2a5a5 (diff)
downloadplus-4ad3cd45f7a8c3f6d1817705c06223d1a2798a2f.tar.gz
plus-4ad3cd45f7a8c3f6d1817705c06223d1a2798a2f.tar.bz2
plus-4ad3cd45f7a8c3f6d1817705c06223d1a2798a2f.tar.xz
plus-4ad3cd45f7a8c3f6d1817705c06223d1a2798a2f.zip
Improve constructors in some classes.
Diffstat (limited to 'src/gui/debugwindow.h')
-rw-r--r--src/gui/debugwindow.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/gui/debugwindow.h b/src/gui/debugwindow.h
index c6143dfa1..1a35e890b 100644
--- a/src/gui/debugwindow.h
+++ b/src/gui/debugwindow.h
@@ -37,7 +37,8 @@ class DebugTab : public Container
friend class DebugWindow;
public:
- DebugTab()
+ DebugTab() :
+ Container()
{ }
void logic() = 0;
@@ -58,7 +59,9 @@ class MapDebugTab : public DebugTab
void logic();
private:
- Label *mMusicFileLabel, *mMapLabel, *mMinimapLabel;
+ Label *mMusicFileLabel;
+ Label *mMapLabel;
+ Label *mMinimapLabel;
Label *mTileMouseLabel;
Label *mParticleCountLabel;
Label *mMapActorCountLabel;