summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/mysql
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/drivers/mysql
parent4de70892adcfb546e540680d803531d80c31c808 (diff)
Avoid reserved identifiers
Change-Id: I2217920ced336189a94c0a5d1e3ac0ccd3912881
Diffstat (limited to 'connectivity/source/drivers/mysql')
-rw-r--r--connectivity/source/drivers/mysql/YTable.cxx20
-rw-r--r--connectivity/source/drivers/mysql/YUser.cxx4
2 files changed, 12 insertions, 12 deletions
diff --git a/connectivity/source/drivers/mysql/YTable.cxx b/connectivity/source/drivers/mysql/YTable.cxx
index bdece3d48431..a34406e7bb67 100644
--- a/connectivity/source/drivers/mysql/YTable.cxx
+++ b/connectivity/source/drivers/mysql/YTable.cxx
@@ -92,20 +92,20 @@ OMySQLTable::OMySQLTable( sdbcx::OCollection* _pTables,
OMySQLTable::OMySQLTable( sdbcx::OCollection* _pTables,
const Reference< XConnection >& _xConnection,
- const OUString& _Name,
- const OUString& _Type,
- const OUString& _Description ,
- const OUString& _SchemaName,
- const OUString& _CatalogName,
+ const OUString& Name,
+ const OUString& Type,
+ const OUString& Description ,
+ const OUString& SchemaName,
+ const OUString& CatalogName,
sal_Int32 _nPrivileges
) : OTableHelper( _pTables,
_xConnection,
true,
- _Name,
- _Type,
- _Description,
- _SchemaName,
- _CatalogName)
+ Name,
+ Type,
+ Description,
+ SchemaName,
+ CatalogName)
, m_nPrivileges(_nPrivileges)
{
construct();
diff --git a/connectivity/source/drivers/mysql/YUser.cxx b/connectivity/source/drivers/mysql/YUser.cxx
index 1a0960b71b82..f90b496e6f8a 100644
--- a/connectivity/source/drivers/mysql/YUser.cxx
+++ b/connectivity/source/drivers/mysql/YUser.cxx
@@ -43,8 +43,8 @@ OMySQLUser::OMySQLUser( const ::com::sun::star::uno::Reference< ::com::sun::star
}
OMySQLUser::OMySQLUser( const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection >& _xConnection,
- const OUString& _Name
- ) : connectivity::sdbcx::OUser(_Name, true)
+ const OUString& Name
+ ) : connectivity::sdbcx::OUser(Name, true)
,m_xConnection(_xConnection)
{
construct();