summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-05-15 10:59:11 +0100
committerCaolán McNamara <caolanm@redhat.com>2016-05-15 11:01:16 +0100
commita3123cd0105c1feec3a06d071c97cb758b307bf8 (patch)
tree6ac518f8255bf4bd5476f7977308376092018c19
parentcoverity#1361590 Uninitialized scalar field (diff)
downloadcore-a3123cd0105c1feec3a06d071c97cb758b307bf8.tar.gz
core-a3123cd0105c1feec3a06d071c97cb758b307bf8.zip
coverity#1361592 Uninitialized scalar field
Change-Id: I6cb8827c9da73516e71aee889cfdfcb7598a9926
-rw-r--r--vcl/source/window/window.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index 695967ad3ab4..105f62f56879 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -745,13 +745,16 @@ ImplWinData::ImplWinData() :
mpExtOldText(nullptr),
mpExtOldAttrAry(nullptr),
mpCursorRect(nullptr),
- mnCursorExtWidth(),
+ mnCursorExtWidth(0),
+ mbVertical(false),
mpCompositionCharRects(nullptr),
+ mnCompositionCharRects(0),
mpFocusRect(nullptr),
mpTrackRect(nullptr),
mnTrackFlags(ShowTrackFlags::NONE),
mnIsTopWindow((sal_uInt16) ~0), // not initialized yet, 0/1 will indicate TopWindow (see IsTopWindow())
- mbMouseOver(false)
+ mbMouseOver(false),
+ mbEnableNativeWidget(false)
{
}