Missing initialization of members in the second constructor.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11128 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2005-01-29 17:34:00 +00:00
parent 01225b393d
commit c6de9dc035
+8 -1
View File
@@ -21,7 +21,14 @@ CommonTestApp::CommonTestApp(const char *signature)
// constructor
CommonTestApp::CommonTestApp(const char *signature, status_t *result)
: BApplication(signature, result)
: BApplication(signature, result),
fQuitOnSecondTry(false),
fEventThread(-1),
fEventDelay(0),
fEventCount(0),
fEventHandler(NULL),
fMessageHandler(NULL),
fReportDestruction(false)
{
}