summaryrefslogtreecommitdiff
path: root/xmloff/source/transform
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-03-31 13:17:54 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-03-31 13:17:54 +0200
commitc0755c8ee064bc1b4868de560232b3d604b2156b (patch)
treef298220c856114db22229cd0f301617e5f76b745 /xmloff/source/transform
parent7b5924ff983ba992329c76fce6ebaf9cdab3a064 (diff)
Reduce to static_cast any reinterpret_cast from void pointers
Change-Id: Ie25a2b8a84a146a5b988c6ef77127896d126e488
Diffstat (limited to 'xmloff/source/transform')
-rw-r--r--xmloff/source/transform/XMLFilterRegistration.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/transform/XMLFilterRegistration.cxx b/xmloff/source/transform/XMLFilterRegistration.cxx
index 1d273ecd2234..c834c2e1b731 100644
--- a/xmloff/source/transform/XMLFilterRegistration.cxx
+++ b/xmloff/source/transform/XMLFilterRegistration.cxx
@@ -95,7 +95,7 @@ SAL_DLLPUBLIC_EXPORT void* SAL_CALL xof_component_getFactory( const sal_Char * p
{
try
{
- uno::Reference< lang::XMultiServiceFactory > xMSF( reinterpret_cast< lang::XMultiServiceFactory * >( pServiceManager ) );
+ uno::Reference< lang::XMultiServiceFactory > xMSF( static_cast< lang::XMultiServiceFactory * >( pServiceManager ) );
const sal_Int32 nImplNameLen = strlen( pImplName );