summaryrefslogtreecommitdiffstats
path: root/oox/source/vml
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-11-30 09:16:38 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-11-30 09:16:38 +0000
commit690952524ab2a1ee9e00aad17502da75931ffc88 (patch)
treefcc7f4db42e5dcf8816184c9d8e521a53ef20057 /oox/source/vml
parentcoverity#1424325 Uninitialized scalar field (diff)
downloadcore-690952524ab2a1ee9e00aad17502da75931ffc88.tar.gz
core-690952524ab2a1ee9e00aad17502da75931ffc88.zip
coverity#1424322 Uninitialized scalar field
Change-Id: I4314ed8ecbfaf1435bc22688e9afb7b0b3bcbfd0
Diffstat (limited to 'oox/source/vml')
-rw-r--r--oox/source/vml/vmlshape.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/oox/source/vml/vmlshape.cxx b/oox/source/vml/vmlshape.cxx
index 8079f5ef179d..ea111d4c93cb 100644
--- a/oox/source/vml/vmlshape.cxx
+++ b/oox/source/vml/vmlshape.cxx
@@ -254,8 +254,10 @@ ClientData::ClientData() :
{
}
-ShapeModel::ShapeModel() :
- mbIsSignatureLine(false)
+ShapeModel::ShapeModel()
+ : mbIsSignatureLine(false)
+ , mbSignatureLineShowSignDate(true)
+ , mbSignatureLineCanAddComment(false)
{
}