summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@suse.cz>2013-06-14 17:39:50 +0200
committerMiklos Vajna <vmiklos@suse.cz>2013-06-15 10:45:11 +0200
commit12322f5fd2a67e3f21029ac3511aa54d96fc1cab (patch)
tree0ecac19db0fe33d14f88c57d530226a6daf016ca
parent559d194d80a20b17ba6aa6f94a7749bcc59c871e (diff)
fdo#58819 VML export of ESCHER_Prop_fNoLineDrawDash
With this, the bugdoc is (correctly) no longer stroked. Change-Id: Iaf00e17f2535ece2be09dc8ec0d383f2218a6050
-rw-r--r--oox/source/export/vmlexport.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/oox/source/export/vmlexport.cxx b/oox/source/export/vmlexport.cxx
index 88065538d6dd..f37bdf8c9486 100644
--- a/oox/source/export/vmlexport.cxx
+++ b/oox/source/export/vmlexport.cxx
@@ -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",