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

mysqlc: loplugin:cstylecast

Change-Id: I293f6fc392f6d081d08d2f53886f534409e38bd5
üst 87831588
......@@ -1054,7 +1054,7 @@ Reference< XConnection > SAL_CALL ODatabaseMetaData::getConnection()
throw(SQLException, RuntimeException, std::exception)
{
OSL_TRACE("ODatabaseMetaData::getConnection");
return (Reference< XConnection >)&m_rConnection;
return &m_rConnection;
}
/*
......
......@@ -193,7 +193,7 @@ Reference< XConnection > SAL_CALL OCommonStatement::getConnection()
checkDisposed(rBHelper.bDisposed);
// just return(our connection here
return ((Reference< XConnection >)m_pConnection);
return m_pConnection;
}
sal_Int32 SAL_CALL OCommonStatement::getUpdateCount()
......
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