summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-01-28 21:01:51 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-01-28 23:00:32 -0600
commitf36206a7f0a3f8de4f72b1af0d50ef334216dbe6 (patch)
tree2e8bc17fb6af0372cea583fbea7a6ce04d77c882 /include
parentcoverity#1019411 : Uninitialized scalar field (diff)
downloadcore-f36206a7f0a3f8de4f72b1af0d50ef334216dbe6.tar.gz
core-f36206a7f0a3f8de4f72b1af0d50ef334216dbe6.zip
coverity#1019410 : Uninitialized scalar field
Change-Id: I121421f929caffa6e4ca5a657d190c1d544e5365
Diffstat (limited to 'include')
-rw-r--r--include/vcl/layout.hxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/vcl/layout.hxx b/include/vcl/layout.hxx
index 3ea8d3133758..3ed5862991d6 100644
--- a/include/vcl/layout.hxx
+++ b/include/vcl/layout.hxx
@@ -69,6 +69,7 @@ public:
VclBox(Window *pParent, bool bHomogeneous, int nSpacing)
: VclContainer(pParent)
, m_bHomogeneous(bHomogeneous)
+ , m_bVerticalContainer(false)
, m_nSpacing(nSpacing)
{
}