diff options
Diffstat (limited to 'svtools/source/graphic')
-rw-r--r-- | svtools/source/graphic/provider.cxx | 2 | ||||
-rw-r--r-- | svtools/source/graphic/renderer.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/graphic/provider.cxx b/svtools/source/graphic/provider.cxx index bbc2bc7abee0..9b8c7757f550 100644 --- a/svtools/source/graphic/provider.cxx +++ b/svtools/source/graphic/provider.cxx @@ -63,7 +63,7 @@ namespace unographic { uno::Reference< uno::XInterface > SAL_CALL GraphicProvider_CreateInstance( const uno::Reference< lang::XMultiServiceFactory >& ) { - return SAL_STATIC_CAST( ::cppu::OWeakObject*, new GraphicProvider ); + return (static_cast< ::cppu::OWeakObject* >(new GraphicProvider )); } GraphicProvider::GraphicProvider() diff --git a/svtools/source/graphic/renderer.cxx b/svtools/source/graphic/renderer.cxx index 07e054d3dd93..1b0a46c0f7f6 100644 --- a/svtools/source/graphic/renderer.cxx +++ b/svtools/source/graphic/renderer.cxx @@ -54,7 +54,7 @@ namespace unographic { uno::Reference< uno::XInterface > SAL_CALL GraphicRendererVCL_CreateInstance( const uno::Reference< lang::XMultiServiceFactory >& ) { - return SAL_STATIC_CAST( ::cppu::OWeakObject*, new GraphicRendererVCL ); + return (static_cast< ::cppu::OWeakObject* >(new GraphicRendererVCL )); } |