Kaydet (Commit) e39da32b authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Reduce to static_cast any reinterpret_cast from void pointers

Change-Id: I9e12cea5aba3b78e1f6ed284aedb7531d107edbf
üst be44ec8c
......@@ -466,7 +466,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL utl_component_getFactory(
{
void * pRet = 0;
css::uno::Reference< css::lang::XMultiServiceFactory > xSMgr(
reinterpret_cast< css::lang::XMultiServiceFactory * >( pServiceManager ) );
static_cast< css::lang::XMultiServiceFactory * >( pServiceManager ) );
css::uno::Reference< css::lang::XSingleComponentFactory > xFactory;
if (OTempFileService::getImplementationName_Static().equalsAscii( pImplName ) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment