Kaydet (Commit) dbb74ee9 authored tarafından Michael Stahl's avatar Michael Stahl

fdo#61000: writerfilter: filter out unsupported list tab stops

Change-Id: Ic9d31eba84b1d8d9cf93d8289621a65d43521a8b
üst 0d4ee442
......@@ -135,7 +135,13 @@ void ListLevel::SetValue( Id nId, sal_Int32 nValue )
m_nXChFollow = nValue;
break;
case NS_ooxml::LN_CT_TabStop_pos:
m_nTabstop = nValue;
if (nValue < 0)
{
SAL_INFO("writerfilter",
"unsupported list tab stop position " << nValue);
}
else
m_nTabstop = nValue;
break;
default:
OSL_FAIL( "this line should never be reached");
......
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