diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-05-15 10:59:11 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-05-15 11:01:16 +0100 |
commit | a3123cd0105c1feec3a06d071c97cb758b307bf8 (patch) | |
tree | 6ac518f8255bf4bd5476f7977308376092018c19 /vcl | |
parent | dcc4b29d9b87a56a240f12342f0fef5c1b455100 (diff) |
coverity#1361592 Uninitialized scalar field
Change-Id: I6cb8827c9da73516e71aee889cfdfcb7598a9926
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/window/window.cxx | 7 |
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) { } |