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

coverity#738890 Uninitialized pointer field

Change-Id: Id000614b38b1c2702e3f3362ba29c4a0ac6f18a5
üst 1235c8ae
......@@ -1149,12 +1149,11 @@ uno::Sequence< OUString > SwXFrame::getSupportedServiceNames(void) throw( uno::R
SwXFrame::SwXFrame(FlyCntType eSet, const :: SfxItemPropertySet* pSet, SwDoc *pDoc)
: m_pImpl(new Impl)
,
m_pPropSet(pSet),
m_pDoc ( pDoc ),
eType(eSet),
bIsDescriptor(true),
m_pCopySource( 0 )
, m_pPropSet(pSet)
, m_pDoc(pDoc)
, eType(eSet)
, bIsDescriptor(true)
, m_pCopySource(0)
{
// Register ourselves as a listener to the document (via the page descriptor)
pDoc->GetPageDescFromPool(RES_POOLPAGE_STANDARD)->Add(this);
......@@ -1195,6 +1194,7 @@ SwXFrame::SwXFrame(FlyCntType eSet, const :: SfxItemPropertySet* pSet, SwDoc *pD
break;
default:
pProps = NULL;
;
}
}
......
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