summaryrefslogtreecommitdiff
path: root/include/uno/mapping.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-01-28 13:50:17 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-01-28 13:50:37 +0100
commit4e3da621fe26c2ad85258692c63a044d0541bd64 (patch)
tree05607d0de471c5d9451b197945243f735ee168b0 /include/uno/mapping.hxx
parent4b60941b60262be4861f5e8fba95366d3187c445 (diff)
Some more loplugin:cstylecast clean-up
Change-Id: I132d22e2af3cf673c17d8964f690d48990834884
Diffstat (limited to 'include/uno/mapping.hxx')
-rw-r--r--include/uno/mapping.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uno/mapping.hxx b/include/uno/mapping.hxx
index 1199c71ff4e3..51a12d32b53c 100644
--- a/include/uno/mapping.hxx
+++ b/include/uno/mapping.hxx
@@ -325,7 +325,7 @@ inline bool mapToUno( uno_Interface ** ppRet, const Reference< C > & x )
::rtl::OUString( UNO_LB_UNO ) );
OSL_ASSERT( aMapping.is() );
aMapping.mapInterface(
- (void **)ppRet, x.get(), ::cppu::getTypeFavourUnsigned( &x ) );
+ reinterpret_cast<void **>(ppRet), x.get(), ::cppu::getTypeFavourUnsigned( &x ) );
return (0 != *ppRet);
}