diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-02 12:27:38 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-02 15:51:43 +0100 |
commit | b75204cd33901bd18e9000ee63a225283a6207a0 (patch) | |
tree | 66ca9aac00aeeea75fe065f1a3f43e0d6275a210 /vcl | |
parent | dc1277767d507dde91a1c7999ebdc26caaa922a3 (diff) |
coverity#708642 Uninitialized pointer field
Change-Id: I30b61ed5b383f4acb5d29cb1c898015b28b1431c
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/window/brdwin.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/vcl/source/window/brdwin.cxx b/vcl/source/window/brdwin.cxx index 4ec9579a9465..84794f470c3a 100644 --- a/vcl/source/window/brdwin.cxx +++ b/vcl/source/window/brdwin.cxx @@ -1008,13 +1008,16 @@ void ImplNoBorderWindowView::DrawWindow( sal_uInt16, OutputDevice*, const Point* } // - ImplSmallBorderWindowView - - ImplSmallBorderWindowView::ImplSmallBorderWindowView( ImplBorderWindow* pBorderWindow ) : mpBorderWindow(pBorderWindow) + , mpOutDev(NULL) + , mnWidth(0) + , mnHeight(0) , mnLeftBorder(0) , mnTopBorder(0) , mnRightBorder(0) , mnBottomBorder(0) + , mbNWFBorder(false) { } |