Kaydet (Commit) 3e5e3def authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#707841 Uninitialized scalar field

and coverity#707840

Change-Id: Idf6e7a3f51ce148fd935b75fa63b931d9200d568
üst 5de69f0f
......@@ -7214,6 +7214,7 @@ SvxMSDffImportRec::SvxMSDffImportRec()
nYAlign( 0 ), // position n cm below
pYRelTo( NULL ), // relative to paragraph
nLayoutInTableCell( 0 ), // element is laid out in table cell
nFlags( 0 ),
nTextRotationAngle( 0 ),
nDxTextLeft( 144 ),
nDyTextTop( 72 ),
......@@ -7254,6 +7255,7 @@ SvxMSDffImportRec::SvxMSDffImportRec(const SvxMSDffImportRec& rCopy)
nYAlign( rCopy.nYAlign ),
pYRelTo( NULL ),
nLayoutInTableCell( rCopy.nLayoutInTableCell ),
nFlags( rCopy.nFlags ),
nTextRotationAngle( rCopy.nTextRotationAngle ),
nDxTextLeft( rCopy.nDxTextLeft ),
nDyTextTop( rCopy.nDyTextTop ),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment