Kaydet (Commit) 64d80d22 authored tarafından Miklos Vajna's avatar Miklos Vajna

Related: tdf#105093 sd PDF export: handle css.presentation.MediaShape as well

It's exactly the same as css.drawing.MediaShape in this context.

Change-Id: I4be114ef731e85222f0dd1d897f646ad8da3849d
üst 1b4746f5
......@@ -1653,7 +1653,7 @@ void ImplPDFExportShapeInteraction( const uno::Reference< drawing::XShape >& xSh
Rectangle aLinkRect( Point( aShapePos.X, aShapePos.Y ), Size( aShapeSize.Width, aShapeSize.Height ) );
// Handle linked videos.
if (xShape->getShapeType() == "com.sun.star.drawing.MediaShape")
if (xShape->getShapeType() == "com.sun.star.drawing.MediaShape" || xShape->getShapeType() == "com.sun.star.presentation.MediaShape")
{
OUString aMediaURL;
xShapePropSet->getPropertyValue("MediaURL") >>= aMediaURL;
......
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