From c6de9dc03510928285df7de7e2fb34a700ffb1fa Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sat, 29 Jan 2005 17:34:00 +0000 Subject: [PATCH] Missing initialization of members in the second constructor. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11128 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/tests/kits/app/common/CommonTestApp.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/tests/kits/app/common/CommonTestApp.cpp b/src/tests/kits/app/common/CommonTestApp.cpp index 09690701bd..c881a09b84 100644 --- a/src/tests/kits/app/common/CommonTestApp.cpp +++ b/src/tests/kits/app/common/CommonTestApp.cpp @@ -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) { }