diff options
Diffstat (limited to 'slideshow/source/engine/shapes')
-rw-r--r-- | slideshow/source/engine/shapes/backgroundshape.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slideshow/source/engine/shapes/backgroundshape.cxx b/slideshow/source/engine/shapes/backgroundshape.cxx index e3e3fb9ccc88..4afb48189e28 100644 --- a/slideshow/source/engine/shapes/backgroundshape.cxx +++ b/slideshow/source/engine/shapes/backgroundshape.cxx @@ -145,7 +145,7 @@ namespace slideshow::internal xPropSet->getPropertyValue(u"Width"_ustr) >>= nDocWidth; xPropSet->getPropertyValue(u"Height"_ustr) >>= nDocHeight; - mpMtf = xMtf; + mpMtf = std::move(xMtf); maBounds = ::basegfx::B2DRectangle( 0,0,nDocWidth, nDocHeight ); } |