diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-22 16:34:08 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-22 16:34:08 +0200 |
commit | ff5021927dbd63e9675593a6896b36b05ef40b5f (patch) | |
tree | f217592b9e31b25d2fe6622dc1a109b2357c0a8a | |
parent | 36ef03797a262d553bee8853f36f9cae62e99b81 (diff) |
Avoid reserved identifiers
Change-Id: I4654278f9a718042efde46755ee25e62494e3fb6
-rw-r--r-- | connectivity/source/drivers/evoab2/NTable.cxx | 20 | ||||
-rw-r--r-- | connectivity/source/drivers/evoab2/NTable.hxx | 10 |
2 files changed, 15 insertions, 15 deletions
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;} |