summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-11-21 22:15:49 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-11-21 22:15:49 +0100
commit3ec6de78f62a068b185068886d1beb8d287ddabe (patch)
treecb3c5c2ff146c87b9aed965e485a8ce1abccd008 /connectivity
parent8442bda2ca252a77b091fdf7140f972220b1895e (diff)
loplugin:datamembershadow
Change-Id: I773bb19ae33709421fde01426716dcf52065402f
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/macab/MacabStatement.cxx21
-rw-r--r--connectivity/source/drivers/macab/MacabStatement.hxx2
2 files changed, 11 insertions, 12 deletions
diff --git a/connectivity/source/drivers/macab/MacabStatement.cxx b/connectivity/source/drivers/macab/MacabStatement.cxx
index 2fa468e4c2b9..7140c41dba33 100644
--- a/connectivity/source/drivers/macab/MacabStatement.cxx
+++ b/connectivity/source/drivers/macab/MacabStatement.cxx
@@ -65,12 +65,11 @@ IMPLEMENT_SERVICE_INFO(MacabStatement, "com.sun.star.sdbc.drivers.MacabStatement
MacabCommonStatement::MacabCommonStatement(MacabConnection* _pConnection )
: MacabCommonStatement_BASE(m_aMutex),
- OPropertySetHelper(MacabCommonStatement_BASE::rBHelper),
+ OPropertySetHelper(rBHelper),
m_aParser(_pConnection->getDriver()->getComponentContext()),
m_aSQLIterator(_pConnection, _pConnection->createCatalog()->getTables(), m_aParser ),
m_pParseTree(nullptr),
- m_pConnection(_pConnection),
- rBHelper(MacabCommonStatement_BASE::rBHelper)
+ m_pConnection(_pConnection)
{
m_pConnection->acquire();
}
@@ -374,7 +373,7 @@ void SAL_CALL MacabCommonStatement::cancel( ) throw(RuntimeException)
{
::osl::MutexGuard aGuard( m_aMutex );
- checkDisposed(MacabCommonStatement_BASE::rBHelper.bDisposed);
+ checkDisposed(rBHelper.bDisposed);
// cancel the current sql statement
}
@@ -382,7 +381,7 @@ void SAL_CALL MacabCommonStatement::close( ) throw(SQLException, RuntimeExcepti
{
{
::osl::MutexGuard aGuard( m_aMutex );
- checkDisposed(MacabCommonStatement_BASE::rBHelper.bDisposed);
+ checkDisposed(rBHelper.bDisposed);
}
dispose();
@@ -392,7 +391,7 @@ sal_Bool SAL_CALL MacabCommonStatement::execute(
const OUString& sql ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aMutex );
- checkDisposed(MacabCommonStatement_BASE::rBHelper.bDisposed);
+ checkDisposed(rBHelper.bDisposed);
Reference< XResultSet > xRS = executeQuery(sql);
@@ -403,7 +402,7 @@ Reference< XResultSet > SAL_CALL MacabCommonStatement::executeQuery(
const OUString& sql ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aMutex );
- checkDisposed(MacabCommonStatement_BASE::rBHelper.bDisposed);
+ checkDisposed(rBHelper.bDisposed);
OSL_TRACE("Mac OS Address book - SQL Request: %s", OUtoCStr(sql));
@@ -462,7 +461,7 @@ OSL_TRACE("Mac OS Address book - SQL Request: %s", OUtoCStr(sql));
Reference< XConnection > SAL_CALL MacabCommonStatement::getConnection( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aMutex );
- checkDisposed(MacabCommonStatement_BASE::rBHelper.bDisposed);
+ checkDisposed(rBHelper.bDisposed);
// just return our connection here
return m_pConnection;
@@ -471,7 +470,7 @@ Reference< XConnection > SAL_CALL MacabCommonStatement::getConnection( ) throw(
sal_Int32 SAL_CALL MacabCommonStatement::executeUpdate( const OUString& ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aMutex );
- checkDisposed(MacabCommonStatement_BASE::rBHelper.bDisposed);
+ checkDisposed(rBHelper.bDisposed);
// the return values gives information about how many rows are affected by executing the sql statement
return 0;
@@ -480,7 +479,7 @@ sal_Int32 SAL_CALL MacabCommonStatement::executeUpdate( const OUString& ) throw(
Any SAL_CALL MacabCommonStatement::getWarnings( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aMutex );
- checkDisposed(MacabCommonStatement_BASE::rBHelper.bDisposed);
+ checkDisposed(rBHelper.bDisposed);
return makeAny(m_aLastWarning);
}
@@ -488,7 +487,7 @@ Any SAL_CALL MacabCommonStatement::getWarnings( ) throw(SQLException, RuntimeEx
void SAL_CALL MacabCommonStatement::clearWarnings( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aMutex );
- checkDisposed(MacabCommonStatement_BASE::rBHelper.bDisposed);
+ checkDisposed(rBHelper.bDisposed);
m_aLastWarning = SQLWarning();
}
diff --git a/connectivity/source/drivers/macab/MacabStatement.hxx b/connectivity/source/drivers/macab/MacabStatement.hxx
index 0328649b734d..aaaa4b2c529a 100644
--- a/connectivity/source/drivers/macab/MacabStatement.hxx
+++ b/connectivity/source/drivers/macab/MacabStatement.hxx
@@ -95,7 +95,7 @@ namespace connectivity
virtual ~MacabCommonStatement() override;
public:
- ::cppu::OBroadcastHelper& rBHelper;
+ using MacabCommonStatement_BASE::rBHelper;
explicit MacabCommonStatement(MacabConnection *_pConnection);
using MacabCommonStatement_BASE::operator css::uno::Reference< css::uno::XInterface >;