diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-06 15:30:36 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-06 15:31:06 +0200 |
commit | 5aadbc15a5ab18441026a3dfc75a35dba0146337 (patch) | |
tree | 1affbee906f225374944c1502682610c35b91810 /connectivity/source/sdbcx/VGroup.cxx | |
parent | 4de70892adcfb546e540680d803531d80c31c808 (diff) |
Avoid reserved identifiers
Change-Id: I2217920ced336189a94c0a5d1e3ac0ccd3912881
Diffstat (limited to 'connectivity/source/sdbcx/VGroup.cxx')
-rw-r--r-- | connectivity/source/sdbcx/VGroup.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/sdbcx/VGroup.cxx b/connectivity/source/sdbcx/VGroup.cxx index 7e41705efcb0..0e8b5ab2e643 100644 --- a/connectivity/source/sdbcx/VGroup.cxx +++ b/connectivity/source/sdbcx/VGroup.cxx @@ -43,11 +43,11 @@ OGroup::OGroup(bool _bCase) : OGroup_BASE(m_aMutex) { } -OGroup::OGroup(const OUString& _Name, bool _bCase) : OGroup_BASE(m_aMutex) +OGroup::OGroup(const OUString& Name, bool _bCase) : OGroup_BASE(m_aMutex) ,ODescriptor(OGroup_BASE::rBHelper,_bCase) ,m_pUsers(nullptr) { - m_Name = _Name; + m_Name = Name; } OGroup::~OGroup() |