diff options
Diffstat (limited to 'slideshow/source/engine/eventmultiplexer.cxx')
-rw-r--r-- | slideshow/source/engine/eventmultiplexer.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/slideshow/source/engine/eventmultiplexer.cxx b/slideshow/source/engine/eventmultiplexer.cxx index 80c4c13d9f46..a5135384b311 100644 --- a/slideshow/source/engine/eventmultiplexer.cxx +++ b/slideshow/source/engine/eventmultiplexer.cxx @@ -1285,15 +1285,15 @@ void EventMultiplexer::notifyHyperlinkClicked( { return pHandler.getHandler()->handleHyperlink( hyperLink ); } ); } -basegfx::B2DPoint EventMultiplexer::toMatrixPoint(uno::Reference<uno::XInterface> xInterface, - basegfx::B2DPoint pnt) +basegfx::B2DPoint EventMultiplexer::toMatrixPoint(const uno::Reference<uno::XInterface>& xInterface, + const basegfx::B2DPoint& pnt) { uno::Reference<presentation::XSlideShowView> xView(xInterface, uno::UNO_QUERY_THROW); return mpImpl->toMatrixPoint(xView, pnt); } -basegfx::B2DPoint EventMultiplexer::toNormalPoint(uno::Reference<uno::XInterface> xInterface, - basegfx::B2DPoint pnt) +basegfx::B2DPoint EventMultiplexer::toNormalPoint(const uno::Reference<uno::XInterface>& xInterface, + const basegfx::B2DPoint& pnt) { uno::Reference<presentation::XSlideShowView> xView(xInterface, uno::UNO_QUERY_THROW); return mpImpl->toNormalPoint(xView, pnt); |