diff options
Diffstat (limited to 'slideshow/source')
-rw-r--r-- | slideshow/source/engine/shapes/viewmediashape.cxx | 5 | ||||
-rw-r--r-- | slideshow/source/engine/shapes/viewmediashape.hxx | 3 |
2 files changed, 3 insertions, 5 deletions
diff --git a/slideshow/source/engine/shapes/viewmediashape.cxx b/slideshow/source/engine/shapes/viewmediashape.cxx index 957466dfbb34..950dacc22184 100644 --- a/slideshow/source/engine/shapes/viewmediashape.cxx +++ b/slideshow/source/engine/shapes/viewmediashape.cxx @@ -291,7 +291,7 @@ namespace slideshow::internal if( ::canvas::tools::getDeviceInfo( xCanvas, aDeviceParams ).getLength() > 1 ) { - implInitializePlayerWindow( rBounds, aDeviceParams, sMimeType ); + implInitializePlayerWindow( rBounds, aDeviceParams ); } // set player properties @@ -380,8 +380,7 @@ namespace slideshow::internal void ViewMediaShape::implInitializePlayerWindow( const ::basegfx::B2DRectangle& rBounds, - const uno::Sequence< uno::Any >& rVCLDeviceParams, - std::u16string_view ) + const uno::Sequence< uno::Any >& rVCLDeviceParams ) { SAL_INFO("slideshow", "ViewMediaShape::implInitializePlayerWindow" ); if( mpMediaWindow || rBounds.isEmpty() ) diff --git a/slideshow/source/engine/shapes/viewmediashape.hxx b/slideshow/source/engine/shapes/viewmediashape.hxx index e5cbe1be737b..ce9c9fbf5139 100644 --- a/slideshow/source/engine/shapes/viewmediashape.hxx +++ b/slideshow/source/engine/shapes/viewmediashape.hxx @@ -145,8 +145,7 @@ namespace slideshow::internal void implSetMediaProperties( const css::uno::Reference< css::beans::XPropertySet >& rxProps ); void implInitializeMediaPlayer( const OUString& rMediaURL, const OUString& rMimeType ); void implInitializePlayerWindow( const ::basegfx::B2DRectangle& rBounds, - const css::uno::Sequence< css::uno::Any >& rVCLDeviceParams, - std::u16string_view rMimeType ); + const css::uno::Sequence< css::uno::Any >& rVCLDeviceParams ); ViewLayerSharedPtr mpViewLayer; VclPtr< SystemChildWindow > mpMediaWindow; mutable css::awt::Point maWindowOffset; |