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

coverity#1415097 Uninitialized scalar field

Change-Id: Id9c70160143be0bede015f07e091c25f36bb13db
üst 96775f3e
...@@ -1245,17 +1245,16 @@ SwXFrame::SwXFrame(FlyCntType eSet, const ::SfxItemPropertySet* pSet, SwDoc *pDo ...@@ -1245,17 +1245,16 @@ SwXFrame::SwXFrame(FlyCntType eSet, const ::SfxItemPropertySet* pSet, SwDoc *pDo
} }
SwXFrame::SwXFrame(SwFrameFormat& rFrameFormat, FlyCntType eSet, const ::SfxItemPropertySet* pSet) SwXFrame::SwXFrame(SwFrameFormat& rFrameFormat, FlyCntType eSet, const ::SfxItemPropertySet* pSet)
: SwClient( &rFrameFormat ) : SwClient(&rFrameFormat)
, m_pImpl(new Impl) , m_pImpl(new Impl)
, , m_pPropSet(pSet)
m_pPropSet(pSet), , m_pDoc(nullptr)
m_pDoc( nullptr ), , eType(eSet)
eType(eSet), , pProps(nullptr)
pProps(nullptr), , bIsDescriptor(false)
bIsDescriptor(false), , m_pCopySource(nullptr)
m_pCopySource(nullptr) , m_nDrawAspect(embed::Aspects::MSOLE_CONTENT)
{ {
} }
SwXFrame::~SwXFrame() SwXFrame::~SwXFrame()
......
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