summaryrefslogtreecommitdiff
path: root/filter/source/msfilter/msdffimp.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-11 21:16:23 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-11 21:16:23 +0100
commiteacfa6367074fd139a97ce77d6bcbd2d3872467f (patch)
treefdfad75d49b8fac8626be57411831ba9dfde8d42 /filter/source/msfilter/msdffimp.cxx
parentdfc39fcdbf2ded137d4c40869a5c4473a45a1a6c (diff)
coverity#707839 Uninitialized scalar field
Change-Id: Ib9cf1d3da0cf03b6aa0aaa7b5206803730115cc8
Diffstat (limited to 'filter/source/msfilter/msdffimp.cxx')
-rw-r--r--filter/source/msfilter/msdffimp.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx
index 2323f8b55169..ff8a9b3624fc 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -199,10 +199,11 @@ void Impl_OlePres::Write( SvStream & rStm )
rStm.Seek( nEndPos );
}
-DffPropertyReader::DffPropertyReader( const SvxMSDffManager& rMan ) :
- rManager( rMan ),
- pDefaultPropSet( NULL ),
- mbRotateGranientFillWithAngle ( false )
+DffPropertyReader::DffPropertyReader( const SvxMSDffManager& rMan )
+ : rManager(rMan)
+ , pDefaultPropSet(NULL)
+ , mnFix16Angle(0)
+ , mbRotateGranientFillWithAngle(false)
{
InitializePropSet( DFF_msofbtOPT );
}