summaryrefslogtreecommitdiff
path: root/unoxml
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-03-31 13:17:34 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-03-31 13:17:34 +0200
commit809f6d610dff5cfc931374dfb8fcd0a343d5488f (patch)
tree809da831d1263ebd94b46008b3738dfe774be786 /unoxml
parente39da32bacb97cd80fce2ced9bc368ce692d9a83 (diff)
Reduce to static_cast any reinterpret_cast from void pointers
Change-Id: Ia275bf01d6c72e01e9144a99121f4a9858e88c8a
Diffstat (limited to 'unoxml')
-rw-r--r--unoxml/source/service/services.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/unoxml/source/service/services.cxx b/unoxml/source/service/services.cxx
index d2bb28500f2c..f3e015fd8c15 100644
--- a/unoxml/source/service/services.cxx
+++ b/unoxml/source/service/services.cxx
@@ -50,7 +50,7 @@ SAL_DLLPUBLIC_EXPORT void* SAL_CALL unoxml_component_getFactory(const sal_Char *
// Define variables which are used in following macros.
Reference< XSingleServiceFactory > xFactory;
Reference< XMultiServiceFactory > xServiceManager(
- reinterpret_cast< XMultiServiceFactory* >(pServiceManager));
+ static_cast< XMultiServiceFactory* >(pServiceManager));
if (CDocumentBuilder::_getImplementationName().equalsAscii( pImplementationName ) )
{