diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-07 13:17:12 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-07 13:47:03 +0100 |
commit | 7ebd6b5dcff979c992b16fe7d2d3b7125ccd8948 (patch) | |
tree | 26c2fcbf84e044c698f8cc49128ad8b52ffb5404 /sd | |
parent | b89813ea4563a33ff2733ea88190c50681d63093 (diff) |
coverity#708126 Uninitialized scalar field
Change-Id: Ib5dfaaf60551ed87c650863388e2e81b899bd253
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/ppt/pptin.cxx | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/sd/source/filter/ppt/pptin.cxx b/sd/source/filter/ppt/pptin.cxx index 1611ddd5426a..2654830fe16a 100644 --- a/sd/source/filter/ppt/pptin.cxx +++ b/sd/source/filter/ppt/pptin.cxx @@ -165,13 +165,16 @@ SdPPTImport::~SdPPTImport() } ImplSdPPTImport::ImplSdPPTImport( SdDrawDocument* pDocument, SvStorage& rStorage_, SfxMedium& rMedium, PowerPointImportParam& rParam ) -: SdrPowerPointImport ( rParam, rMedium.GetBaseURL() ) -, mrMed ( rMedium ) -, mrStorage ( rStorage_ ) -, mbDocumentFound ( sal_False ) -, mnFilterOptions ( 0 ) + : SdrPowerPointImport(rParam, rMedium.GetBaseURL()) + , mrMed(rMedium) + , mrStorage(rStorage_) + , mbDocumentFound(sal_False) + , mnFilterOptions(0) + , mpDoc(pDocument) + , mePresChange(PRESCHANGE_MANUAL) + , mnBackgroundLayerID(0) + , mnBackgroundObjectsLayerID(0) { - mpDoc = pDocument; if ( bOk ) { mbDocumentFound = SeekToDocument( &maDocHd ); // maDocHd = the latest DocumentHeader |