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

guard against missing table container

Change-Id: I11f6381374c7fc12374cd5089e581ddc777005e2
üst fbd32980
...@@ -716,7 +716,7 @@ void LwpTableLayout::RegisterStyle() ...@@ -716,7 +716,7 @@ void LwpTableLayout::RegisterStyle()
// If the table is not "with paragraph above" placement, create an frame style // If the table is not "with paragraph above" placement, create an frame style
// by supertable layout // by supertable layout
if ( LwpLayoutRelativityGuts::LAY_INLINE_NEWLINE == nType if ( LwpLayoutRelativityGuts::LAY_INLINE_NEWLINE == nType
&& !pSuper->GetContainerLayout()->IsCell()) && (!pSuper->GetContainerLayout() || !pSuper->GetContainerLayout()->IsCell()) )
{ {
//with para above //with para above
// pSuper->ApplyBackColor(pTableStyle); // pSuper->ApplyBackColor(pTableStyle);
......
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