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:
@@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user