Kaydet (Commit) 12322f5f authored tarafından Miklos Vajna's avatar Miklos Vajna

fdo#58819 VML export of ESCHER_Prop_fNoLineDrawDash

With this, the bugdoc is (correctly) no longer stroked.

Change-Id: Iaf00e17f2535ece2be09dc8ec0d383f2218a6050
üst 559d194d
......@@ -734,6 +734,13 @@ void VMLExport::Commit( EscherPropertyContainer& rProps, const Rectangle& rRect
bAlreadyWritten[ESCHER_Prop_Rotation] = true;
}
break;
case ESCHER_Prop_fNoLineDrawDash:
{
// See DffPropertyReader::ApplyLineAttributes().
impl_AddBool( m_pShapeAttrList, XML_stroked, it->nPropValue & 8 );
bAlreadyWritten[ESCHER_Prop_fNoLineDrawDash] = true;
}
break;
default:
#if OSL_DEBUG_LEVEL > 0
fprintf( stderr, "TODO VMLExport::Commit(), unimplemented id: %d, value: %" SAL_PRIuUINT32 ", data: [%" SAL_PRIuUINT32 ", %p]\n",
......
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