From ff5021927dbd63e9675593a6896b36b05ef40b5f Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 22 Apr 2016 16:34:08 +0200 Subject: Avoid reserved identifiers Change-Id: I4654278f9a718042efde46755ee25e62494e3fb6 --- connectivity/source/drivers/evoab2/NTable.cxx | 20 ++++++++++---------- connectivity/source/drivers/evoab2/NTable.hxx | 10 +++++----- 2 files changed, 15 insertions(+), 15 deletions(-) (limited to 'connectivity/source') diff --git a/connectivity/source/drivers/evoab2/NTable.cxx b/connectivity/source/drivers/evoab2/NTable.cxx index 939bb1f1fbca..160dfd7795d7 100644 --- a/connectivity/source/drivers/evoab2/NTable.cxx +++ b/connectivity/source/drivers/evoab2/NTable.cxx @@ -35,17 +35,17 @@ using namespace connectivity::evoab; OEvoabTable::OEvoabTable( sdbcx::OCollection* _pTables, OEvoabConnection* _pConnection, - 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 ) : OEvoabTable_TYPEDEF(_pTables,true, - _Name, - _Type, - _Description, - _SchemaName, - _CatalogName), + Name, + Type, + Description, + SchemaName, + CatalogName), m_pConnection(_pConnection) { construct(); diff --git a/connectivity/source/drivers/evoab2/NTable.hxx b/connectivity/source/drivers/evoab2/NTable.hxx index bf3c32aeebf5..27e2c86db2ad 100644 --- a/connectivity/source/drivers/evoab2/NTable.hxx +++ b/connectivity/source/drivers/evoab2/NTable.hxx @@ -37,11 +37,11 @@ namespace connectivity public: OEvoabTable( sdbcx::OCollection* _pTables, OEvoabConnection* _pConnection, - const OUString& _Name, - const OUString& _Type, - const OUString& _Description = OUString(), - const OUString& _SchemaName = OUString(), - const OUString& _CatalogName = OUString() + const OUString& Name, + const OUString& Type, + const OUString& Description = OUString(), + const OUString& SchemaName = OUString(), + const OUString& CatalogName = OUString() ); OEvoabConnection* getConnection() { return m_pConnection;} -- cgit