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

guard against missing Container Layout

Change-Id: Id9525918eab822b39576a1efce7dc3a3bd93e78d
üst ded7c4ba
...@@ -352,7 +352,7 @@ void LwpSuperTableLayout::ApplyAlignment(XFTableStyle * pTableStyle) ...@@ -352,7 +352,7 @@ void LwpSuperTableLayout::ApplyAlignment(XFTableStyle * pTableStyle)
void LwpSuperTableLayout::XFConvert(XFContentContainer* pCont) void LwpSuperTableLayout::XFConvert(XFContentContainer* pCont)
{ {
if ( LwpLayoutRelativityGuts::LAY_INLINE_NEWLINE == GetRelativeType() if ( LwpLayoutRelativityGuts::LAY_INLINE_NEWLINE == GetRelativeType()
&& !GetContainerLayout()->IsCell()) && (!GetContainerLayout() || !GetContainerLayout()->IsCell()) )
{ {
LwpTableLayout * pTableLayout = GetTableLayout(); LwpTableLayout * pTableLayout = GetTableLayout();
if (pTableLayout) if (pTableLayout)
......
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