summaryrefslogtreecommitdiff
path: root/connectivity/source/sdbcx/VIndex.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-06 15:30:36 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-06 15:31:06 +0200
commit5aadbc15a5ab18441026a3dfc75a35dba0146337 (patch)
tree1affbee906f225374944c1502682610c35b91810 /connectivity/source/sdbcx/VIndex.cxx
parent4de70892adcfb546e540680d803531d80c31c808 (diff)
Avoid reserved identifiers
Change-Id: I2217920ced336189a94c0a5d1e3ac0ccd3912881
Diffstat (limited to 'connectivity/source/sdbcx/VIndex.cxx')
-rw-r--r--connectivity/source/sdbcx/VIndex.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/sdbcx/VIndex.cxx b/connectivity/source/sdbcx/VIndex.cxx
index 67e05499f9ed..d044447fa254 100644
--- a/connectivity/source/sdbcx/VIndex.cxx
+++ b/connectivity/source/sdbcx/VIndex.cxx
@@ -70,20 +70,20 @@ OIndex::OIndex(bool _bCase) : ODescriptor_BASE(m_aMutex)
{
}
-OIndex::OIndex( const OUString& _Name,
- const OUString& _Catalog,
+OIndex::OIndex( const OUString& Name,
+ const OUString& Catalog,
bool _isUnique,
bool _isPrimaryKeyIndex,
bool _isClustered,
bool _bCase) : ODescriptor_BASE(m_aMutex)
,ODescriptor(ODescriptor_BASE::rBHelper,_bCase)
- ,m_Catalog(_Catalog)
+ ,m_Catalog(Catalog)
,m_IsUnique(_isUnique)
,m_IsPrimaryKeyIndex(_isPrimaryKeyIndex)
,m_IsClustered(_isClustered)
,m_pColumns(nullptr)
{
- m_Name = _Name;
+ m_Name = Name;
}
OIndex::~OIndex( )