diff options
author | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2017-12-11 16:13:07 +0100 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2017-12-12 11:18:33 +0100 |
commit | f64a78b49bffdbc614e1fcdc8ff906edd895b65e (patch) | |
tree | 28769a65e5400ae47c56b4b3a69b475fd3481f78 | |
parent | ea0e5ac64820976a2ae124e47156dd94407bf874 (diff) |
Related tdf#83877 Add signatureline element to draw:frame, not draw:image
Because a frame can have multiple (fallback) images, so this would have been
added only to the first one.
Change-Id: I1c41c5e6fd3959fb5cfb5afb5d4fe98b2e5e3c73
Reviewed-on: https://gerrit.libreoffice.org/46243
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
-rw-r--r-- | xmloff/source/draw/shapeexport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/draw/shapeexport.cxx b/xmloff/source/draw/shapeexport.cxx index 86b4f621b182..cbd18580ac79 100644 --- a/xmloff/source/draw/shapeexport.cxx +++ b/xmloff/source/draw/shapeexport.cxx @@ -2410,8 +2410,8 @@ void XMLShapeExport::ImpExportGraphicObjectShape( if (!aMimeType.isEmpty()) GetExport().AddAttribute(XML_NAMESPACE_LO_EXT, "mime-type", aMimeType); - SvXMLElementExport aOBJ(mrExport, XML_NAMESPACE_DRAW, XML_IMAGE, true, true); ImpExportSignatureLine( xShape ); + SvXMLElementExport aOBJ(mrExport, XML_NAMESPACE_DRAW, XML_IMAGE, true, true); if( !sImageURL.isEmpty() ) { |