summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-03-18 08:08:34 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-03-18 07:24:54 +0000
commit59a3d972d2909650506409eeb6d4a71fa263dc29 (patch)
treeae9df300cde76c9c7ff85b2ff127e7e327cebe08 /connectivity
parent243f8abf829323877733612c311019ec63956d82 (diff)
replace typedef OIndex_ADO->sdbcx::OIndex
Change-Id: Ib6ac581689f640811051623b17978bc5caa8c246 Reviewed-on: https://gerrit.libreoffice.org/23351 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/ado/AIndex.cxx12
-rw-r--r--connectivity/source/inc/ado/AIndex.hxx4
2 files changed, 7 insertions, 9 deletions
diff --git a/connectivity/source/drivers/ado/AIndex.cxx b/connectivity/source/drivers/ado/AIndex.cxx
index f061df161735..c81c0c7b2966 100644
--- a/connectivity/source/drivers/ado/AIndex.cxx
+++ b/connectivity/source/drivers/ado/AIndex.cxx
@@ -37,7 +37,7 @@ 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)
+ : sdbcx::OIndex(OUString(),OUString(),sal_False,sal_False,sal_False,_bCase)
,m_pConnection(_pConnection)
{
construct();
@@ -46,7 +46,7 @@ OAdoIndex::OAdoIndex(sal_Bool _bCase,OConnection* _pConnection,ADOIndex* _pIndex
}
OAdoIndex::OAdoIndex(sal_Bool _bCase,OConnection* _pConnection)
- : OIndex_ADO(_bCase)
+ : sdbcx::OIndex(_bCase)
,m_pConnection(_pConnection)
{
construct();
@@ -93,7 +93,7 @@ sal_Int64 OAdoIndex::getSomething( const Sequence< sal_Int8 > & rId ) throw (Run
{
return (rId.getLength() == 16 && 0 == memcmp(getUnoTunnelImplementationId().getConstArray(), rId.getConstArray(), 16 ) )
? reinterpret_cast< sal_Int64 >( this )
- : OIndex_ADO::getSomething(rId);
+ : sdbcx::OIndex::getSomething(rId);
}
void SAL_CALL OAdoIndex::setFastPropertyValue_NoBroadcast(sal_Int32 nHandle,const Any& rValue)throw (Exception)
@@ -127,17 +127,17 @@ void SAL_CALL OAdoIndex::setFastPropertyValue_NoBroadcast(sal_Int32 nHandle,cons
break;
}
}
- OIndex_ADO::setFastPropertyValue_NoBroadcast(nHandle,rValue);
+ sdbcx::OIndex::setFastPropertyValue_NoBroadcast(nHandle,rValue);
}
void SAL_CALL OAdoIndex::acquire() throw()
{
- OIndex_ADO::acquire();
+ sdbcx::OIndex::acquire();
}
void SAL_CALL OAdoIndex::release() throw()
{
- OIndex_ADO::release();
+ sdbcx::OIndex::release();
}
diff --git a/connectivity/source/inc/ado/AIndex.hxx b/connectivity/source/inc/ado/AIndex.hxx
index e7c859a5b0e8..9794d6062f8b 100644
--- a/connectivity/source/inc/ado/AIndex.hxx
+++ b/connectivity/source/inc/ado/AIndex.hxx
@@ -28,10 +28,8 @@ namespace connectivity
{
namespace ado
{
- typedef sdbcx::OIndex OIndex_ADO;
-
class OConnection;
- class OAdoIndex : public OIndex_ADO
+ class OAdoIndex : public sdbcx::OIndex
{
WpADOIndex m_aIndex;
OConnection* m_pConnection;