summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-09-25 11:46:00 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-09-25 13:14:47 +0100
commitcadcbae92323cc715fc7e8241e5b9a6369d20eb8 (patch)
treeb9fe40817f8bf73529938d92425b87eaba13dffe
parent4e388f8b81afdb780c0f75df657b3a2063fc9ff1 (diff)
coverity#1241396 Uninitialized pointer field
Change-Id: Ib9c38ae857125036252ba27ebd03f428046724e0
-rw-r--r--vcl/source/window/layout.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/source/window/layout.cxx b/vcl/source/window/layout.cxx
index 9eb085be783b..3a898f50d5c5 100644
--- a/vcl/source/window/layout.cxx
+++ b/vcl/source/window/layout.cxx
@@ -1940,6 +1940,8 @@ MessageDialog::MessageDialog(vcl::Window* pParent, WinBits nStyle)
: Dialog(pParent, nStyle)
, m_eButtonsType(VCL_BUTTONS_NONE)
, m_eMessageType(VCL_MESSAGE_INFO)
+ , m_pOwnedContentArea(NULL)
+ , m_pOwnedActionArea(NULL)
, m_pGrid(NULL)
, m_pImage(NULL)
, m_pPrimaryMessage(NULL)