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

guard against missing m_pXFContainer

Change-Id: I5c0800c353b46ea1fe359a893bdd8215f70cd809
(cherry picked from commit 13eaf4da)
üst 363af22d
...@@ -283,7 +283,7 @@ void LwpPara::XFConvert(XFContentContainer* pCont) ...@@ -283,7 +283,7 @@ void LwpPara::XFConvert(XFContentContainer* pCont)
m_pXFContainer = pSection; m_pXFContainer = pSection;
} }
if (m_bHasBullet && m_pSilverBullet) if (m_bHasBullet && m_pSilverBullet)
{ {
XFContentContainer* pListItem = AddBulletList(m_pXFContainer); XFContentContainer* pListItem = AddBulletList(m_pXFContainer);
if (pListItem) if (pListItem)
...@@ -291,7 +291,7 @@ void LwpPara::XFConvert(XFContentContainer* pCont) ...@@ -291,7 +291,7 @@ void LwpPara::XFConvert(XFContentContainer* pCont)
pListItem->Add(pPara); pListItem->Add(pPara);
} }
} }
else else if (m_pXFContainer)
{ {
LwpBulletStyleMgr* pBulletStyleMgr = this->GetBulletStyleMgr(); LwpBulletStyleMgr* pBulletStyleMgr = this->GetBulletStyleMgr();
if (pBulletStyleMgr) if (pBulletStyleMgr)
......
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