summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-10 14:22:34 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-10 21:12:58 +0100
commit84e818dbd33d0a10d125e2cbd04bf2d963f2b5fd (patch)
tree1c8339743d6d05aed3a2b5a62874a1a1b17dc4f4 /svx
parentfed275bb020ab052153c6ed789f0eea67603d7ad (diff)
coverity#708341 Uninitialized scalar field
Change-Id: I1169024f243e447f315f796fdc9c53e8b9006602
Diffstat (limited to 'svx')
-rw-r--r--svx/source/customshapes/EnhancedCustomShape3d.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/svx/source/customshapes/EnhancedCustomShape3d.cxx b/svx/source/customshapes/EnhancedCustomShape3d.cxx
index 9f4c4e7fdda3..62249f85de78 100644
--- a/svx/source/customshapes/EnhancedCustomShape3d.cxx
+++ b/svx/source/customshapes/EnhancedCustomShape3d.cxx
@@ -188,6 +188,8 @@ drawing::Direction3D GetDirection3D( SdrCustomShapeGeometryItem& rItem, const OU
EnhancedCustomShape3d::Transformation2D::Transformation2D( const SdrObject* pCustomShape, const Rectangle& /*rBoundRect*/, const double *pM )
: aCenter( pCustomShape->GetSnapRect().Center() )
, eProjectionMode( drawing::ProjectionMode_PARALLEL )
+ , fSkewAngle(0.0)
+ , fSkew(0.0)
, fZScreen(0.0)
, fOriginX(0.0)
, fOriginY(0.0)