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

coverity#707848 Uninitialized scalar field

Change-Id: Iee18d10819ca351525fd121347ffd1478b502765
üst 3e5e3def
...@@ -4341,9 +4341,10 @@ PPTParaPropSet& PPTParaPropSet::operator=( PPTParaPropSet& rParaPropSet ) ...@@ -4341,9 +4341,10 @@ PPTParaPropSet& PPTParaPropSet::operator=( PPTParaPropSet& rParaPropSet )
} }
PPTCharPropSet::PPTCharPropSet( sal_uInt32 nParagraph ) : PPTCharPropSet::PPTCharPropSet( sal_uInt32 nParagraph ) :
mnParagraph ( nParagraph ), : mnOriginalTextPos(0)
mpFieldItem ( NULL ), , mnParagraph(nParagraph)
pCharSet ( new ImplPPTCharPropSet ) , mpFieldItem(NULL)
, pCharSet(new ImplPPTCharPropSet)
{ {
mnHylinkOrigColor = 0; mnHylinkOrigColor = 0;
mbIsHyperlink = false; mbIsHyperlink = false;
......
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