diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-03-31 13:13:46 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-03-31 13:13:46 +0200 |
commit | b06866b648aed78264654d20de28846d0754ac32 (patch) | |
tree | 348b026ca0e4f8770a646ab635498c40112eacb0 /dtrans | |
parent | ccc740edbc459e3ccb7bd3fd612d9a37c1b01463 (diff) |
Reduce to static_cast any reinterpret_cast from void pointers
Change-Id: If485739a3acff83b50dbbe0b242b268f2b080af4
Diffstat (limited to 'dtrans')
-rw-r--r-- | dtrans/source/cnttype/mctfentry.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dtrans/source/cnttype/mctfentry.cxx b/dtrans/source/cnttype/mctfentry.cxx index afedf415d2a8..d7620737b685 100644 --- a/dtrans/source/cnttype/mctfentry.cxx +++ b/dtrans/source/cnttype/mctfentry.cxx @@ -67,7 +67,7 @@ SAL_DLLPUBLIC_EXPORT void* SAL_CALL mcnttype_component_getFactory( const sal_Cha aSNS.getArray( )[0] = "com.sun.star.datatransfer.MimeContentTypeFactory"; Reference< XSingleServiceFactory > xFactory ( createSingleFactory( - reinterpret_cast< XMultiServiceFactory* > ( pSrvManager ), + static_cast< XMultiServiceFactory* > ( pSrvManager ), OUString::createFromAscii( pImplName ), createInstance, aSNS ) ); |