diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-17 11:19:24 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-17 11:19:55 +0200 |
commit | 401d07f31fde6992125b498fc2ac798a6523ca26 (patch) | |
tree | b255a5fbdc04465c2ab90d14f85f028798dbc034 /mysqlc/source | |
parent | 586a461af3a8212939b2e3287c6af450932f23d6 (diff) |
loplugin:datamembershadow
Change-Id: I0206905ce95467a560f8ed24db4403df07d3680e
Diffstat (limited to 'mysqlc/source')
-rw-r--r-- | mysqlc/source/mysqlc_statement.cxx | 1 | ||||
-rw-r--r-- | mysqlc/source/mysqlc_statement.hxx | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/mysqlc/source/mysqlc_statement.cxx b/mysqlc/source/mysqlc_statement.cxx index ffa96ef99255..371f011f07ec 100644 --- a/mysqlc/source/mysqlc_statement.cxx +++ b/mysqlc/source/mysqlc_statement.cxx @@ -59,7 +59,6 @@ OCommonStatement::OCommonStatement(OConnection* _pConnection, sql::Statement *_c ,OStatement_CBase( static_cast<cppu::OWeakObject*>(_pConnection), this ) ,m_pConnection(_pConnection) ,cppStatement(_cppStatement) - ,rBHelper(OCommonStatement_IBase::rBHelper) { OSL_TRACE("OCommonStatement::OCommonStatement"); m_pConnection->acquire(); diff --git a/mysqlc/source/mysqlc_statement.hxx b/mysqlc/source/mysqlc_statement.hxx index 18b63aa0bcfa..fbfe807e1d33 100644 --- a/mysqlc/source/mysqlc_statement.hxx +++ b/mysqlc/source/mysqlc_statement.hxx @@ -99,7 +99,7 @@ namespace connectivity OCommonStatement(OConnection* _pConnection, sql::Statement *_cppStatement); public: - ::cppu::OBroadcastHelper& rBHelper; + using OCommonStatement_IBase::rBHelper; using OCommonStatement_IBase::operator css::uno::Reference< css::uno::XInterface >; // OComponentHelper |