summaryrefslogtreecommitdiff
path: root/io/source/connector/connector.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'io/source/connector/connector.cxx')
-rw-r--r--io/source/connector/connector.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/io/source/connector/connector.cxx b/io/source/connector/connector.cxx
index 7d5d3c321d7b..cc79077cb1b6 100644
--- a/io/source/connector/connector.cxx
+++ b/io/source/connector/connector.cxx
@@ -94,7 +94,7 @@ namespace stoc_connector
if( pConn->m_pipe.create( aName.pData, osl_Pipe_OPEN, osl::Security() ) )
{
- r = Reference < XConnection > ( (XConnection * ) pConn );
+ r = Reference < XConnection > ( static_cast<XConnection *>(pConn) );
}
else
{
@@ -141,7 +141,7 @@ namespace stoc_connector
sizeof( nTcpNoDelay ) , osl_Socket_LevelTcp );
}
pConn->completeConnectionString();
- r = Reference< XConnection > ( (XConnection * ) pConn );
+ r = Reference< XConnection > ( static_cast<XConnection *>(pConn) );
}
else
{
@@ -204,7 +204,7 @@ namespace stoc_connector
Reference< XInterface > SAL_CALL connector_CreateInstance( const Reference< XComponentContext > & xCtx)
{
- return Reference < XInterface >( ( OWeakObject * ) new OConnector(xCtx) );
+ return Reference < XInterface >( static_cast<OWeakObject *>(new OConnector(xCtx)) );
}