diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-03-31 13:17:50 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-03-31 13:17:50 +0200 |
commit | 7b5924ff983ba992329c76fce6ebaf9cdab3a064 (patch) | |
tree | b301d43e9f757e823c9a0c5e3b447d337bd7e240 /xmlhelp | |
parent | 62e798c4a520a8b96e9113e363b1f26767231636 (diff) |
Reduce to static_cast any reinterpret_cast from void pointers
Change-Id: I5c0e0fbb7ebb3bcb85dee363e77f6f7c47e815d8
Diffstat (limited to 'xmlhelp')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/services.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/services.cxx b/xmlhelp/source/cxxhelp/provider/services.cxx index 42b39be9dd22..204fbd7835cd 100644 --- a/xmlhelp/source/cxxhelp/provider/services.cxx +++ b/xmlhelp/source/cxxhelp/provider/services.cxx @@ -34,7 +34,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL ucpchelp_component_getFactory( void * pRet = 0; uno::Reference< lang::XMultiServiceFactory > xSMgr( - reinterpret_cast< lang::XMultiServiceFactory * >( pServiceManager ) ); + static_cast< lang::XMultiServiceFactory * >( pServiceManager ) ); uno::Reference< lang::XSingleServiceFactory > xFactory; if ( ::chelp::ContentProvider::getImplementationName_Static(). |