diff options
Diffstat (limited to 'connectivity/source/drivers/ado/AIndex.cxx')
-rw-r--r-- | connectivity/source/drivers/ado/AIndex.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/connectivity/source/drivers/ado/AIndex.cxx b/connectivity/source/drivers/ado/AIndex.cxx index 065a7e41a8b5..d0764651c348 100644 --- a/connectivity/source/drivers/ado/AIndex.cxx +++ b/connectivity/source/drivers/ado/AIndex.cxx @@ -35,7 +35,7 @@ using namespace com::sun::star::lang; using namespace com::sun::star::beans; using namespace com::sun::star::sdbc; -// ------------------------------------------------------------------------- + OAdoIndex::OAdoIndex(sal_Bool _bCase,OConnection* _pConnection,ADOIndex* _pIndex) : OIndex_ADO(OUString(),OUString(),sal_False,sal_False,sal_False,_bCase) ,m_pConnection(_pConnection) @@ -44,7 +44,7 @@ OAdoIndex::OAdoIndex(sal_Bool _bCase,OConnection* _pConnection,ADOIndex* _pIndex m_aIndex = WpADOIndex(_pIndex); fillPropertyValues(); } -// ------------------------------------------------------------------------- + OAdoIndex::OAdoIndex(sal_Bool _bCase,OConnection* _pConnection) : OIndex_ADO(_bCase) ,m_pConnection(_pConnection) @@ -53,7 +53,7 @@ OAdoIndex::OAdoIndex(sal_Bool _bCase,OConnection* _pConnection) m_aIndex.Create(); } -// ------------------------------------------------------------------------- + void OAdoIndex::refreshColumns() { @@ -72,7 +72,7 @@ void OAdoIndex::refreshColumns() m_pColumns = new OColumns(*this,m_aMutex,aVector,aColumns,isCaseSensitive(),m_pConnection); } -// ------------------------------------------------------------------------- + Sequence< sal_Int8 > OAdoIndex::getUnoTunnelImplementationId() { static ::cppu::OImplementationId * pId = 0; @@ -89,14 +89,14 @@ Sequence< sal_Int8 > OAdoIndex::getUnoTunnelImplementationId() } // com::sun::star::lang::XUnoTunnel -//------------------------------------------------------------------ + sal_Int64 OAdoIndex::getSomething( const Sequence< sal_Int8 > & rId ) throw (RuntimeException) { return (rId.getLength() == 16 && 0 == memcmp(getUnoTunnelImplementationId().getConstArray(), rId.getConstArray(), 16 ) ) ? reinterpret_cast< sal_Int64 >( this ) : OIndex_ADO::getSomething(rId); } -// ------------------------------------------------------------------------- + void SAL_CALL OAdoIndex::setFastPropertyValue_NoBroadcast(sal_Int32 nHandle,const Any& rValue)throw (Exception) { if(m_aIndex.IsValid()) @@ -130,17 +130,17 @@ void SAL_CALL OAdoIndex::setFastPropertyValue_NoBroadcast(sal_Int32 nHandle,cons } OIndex_ADO::setFastPropertyValue_NoBroadcast(nHandle,rValue); } -// ----------------------------------------------------------------------------- + void SAL_CALL OAdoIndex::acquire() throw() { OIndex_ADO::acquire(); } -// ----------------------------------------------------------------------------- + void SAL_CALL OAdoIndex::release() throw() { OIndex_ADO::release(); } -// ----------------------------------------------------------------------------- + |