summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-29 21:07:08 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-29 21:15:21 +0000
commitdbd6bb6a62ec9740fd008c9ec1f7dceca74db953 (patch)
tree0f632dfb66711a55a08c1b3c9b822ec4e5096dd6 /oox
parent99780fcf66f12df6be6f8c1bd636e5e44f1918b2 (diff)
coverity#1194942 Uninitialized scalar field
Change-Id: I21733cb3fc0dd32a39826b0eaa7b2064d50a9c90
Diffstat (limited to 'oox')
-rw-r--r--oox/source/drawingml/textbodyproperties.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/oox/source/drawingml/textbodyproperties.cxx b/oox/source/drawingml/textbodyproperties.cxx
index 73fb9fbc62e5..850092c2dda1 100644
--- a/oox/source/drawingml/textbodyproperties.cxx
+++ b/oox/source/drawingml/textbodyproperties.cxx
@@ -31,8 +31,9 @@ namespace drawingml {
-TextBodyProperties::TextBodyProperties():
- meVA( TextVerticalAdjust_TOP )
+TextBodyProperties::TextBodyProperties()
+ : mbAnchorCtr(false)
+ , meVA( TextVerticalAdjust_TOP )
{
}