diff options
Diffstat (limited to 'svtools/source/graphic')
-rw-r--r-- | svtools/source/graphic/provider.cxx | 3 | ||||
-rw-r--r-- | svtools/source/graphic/renderer.cxx | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/svtools/source/graphic/provider.cxx b/svtools/source/graphic/provider.cxx index 2bc31a62e573..95dda1aab46e 100644 --- a/svtools/source/graphic/provider.cxx +++ b/svtools/source/graphic/provider.cxx @@ -874,9 +874,8 @@ void SAL_CALL GraphicProvider::storeGraphic( const uno::Reference< ::graphic::XG extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL com_sun_star_comp_graphic_GraphicProvider_get_implementation( SAL_UNUSED_PARAMETER css::uno::XComponentContext *, - uno_Sequence * arguments) + css::uno::Sequence<css::uno::Any> const &) { - assert(arguments != 0 && arguments->nElements == 0); (void) arguments; css::uno::Reference<css::uno::XInterface> x( static_cast<cppu::OWeakObject *>(new GraphicProvider)); x->acquire(); diff --git a/svtools/source/graphic/renderer.cxx b/svtools/source/graphic/renderer.cxx index 38b87bbc40df..2b3fc31e52ee 100644 --- a/svtools/source/graphic/renderer.cxx +++ b/svtools/source/graphic/renderer.cxx @@ -294,9 +294,8 @@ void SAL_CALL GraphicRendererVCL::render( const uno::Reference< graphic::XGraphi extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL com_sun_star_comp_graphic_GraphicRendererVCL_get_implementation( SAL_UNUSED_PARAMETER css::uno::XComponentContext *, - uno_Sequence * arguments) + css::uno::Sequence<css::uno::Any> const &) { - assert(arguments != 0 && arguments->nElements == 0); (void) arguments; css::uno::Reference<css::uno::XInterface> x( static_cast<cppu::OWeakObject *>(new GraphicRendererVCL)); x->acquire(); |