summaryrefslogtreecommitdiff
path: root/hwpfilter
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-03-31 13:14:19 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-03-31 13:14:19 +0200
commit9ad3eafb03672e4ad174765e4e939039c4d7df80 (patch)
tree2c2a9a0811a72e80de13f076229acf34f71256a2 /hwpfilter
parent9e2d611c7fecbd9e6b6196961902634ad2330f09 (diff)
Reduce to static_cast any reinterpret_cast from void pointers
Change-Id: I75514fe3a3c55691ca9adfa136bfcd5ff9a2b706
Diffstat (limited to 'hwpfilter')
-rw-r--r--hwpfilter/source/hwpreader.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/hwpfilter/source/hwpreader.hxx b/hwpfilter/source/hwpreader.hxx
index 348392015a46..95252d95824c 100644
--- a/hwpfilter/source/hwpreader.hxx
+++ b/hwpfilter/source/hwpreader.hxx
@@ -304,7 +304,7 @@ extern "C"
if (pServiceManager )
{
Reference< XSingleServiceFactory > xRet;
- Reference< XMultiServiceFactory > xSMgr = reinterpret_cast< XMultiServiceFactory * > ( pServiceManager );
+ Reference< XMultiServiceFactory > xSMgr = static_cast< XMultiServiceFactory * > ( pServiceManager );
OUString aImplementationName = OUString::createFromAscii( pImplName );