diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-05-04 15:51:56 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-05-04 15:52:57 +0200 |
commit | 135c63c8f9cc363c0895542b0f3bed48b61ea836 (patch) | |
tree | 5afa3bcc304e246b38058c2ad7b0d1fd1e76a05f /svtools/source/graphic | |
parent | c48fe716225b1b784d657685396b6cf5fee4fc3d (diff) |
fdo#48253 Expand SAL_STATIC_CAST and SAL_CONST_CAST
Change-Id: I50f0887ceb4517d7ef234f970ca2ba679d533382
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 )); } |