[Libreoffice-commits] core.git: connectivity/source

Stephan Bergmann sbergman at redhat.com
Mon Nov 21 21:15:54 UTC 2016


 connectivity/source/drivers/macab/MacabStatement.cxx |   21 +++++++++----------
 connectivity/source/drivers/macab/MacabStatement.hxx |    2 -
 2 files changed, 11 insertions(+), 12 deletions(-)

New commits:
commit 3ec6de78f62a068b185068886d1beb8d287ddabe
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Mon Nov 21 22:15:49 2016 +0100

    loplugin:datamembershadow
    
    Change-Id: I773bb19ae33709421fde01426716dcf52065402f

diff --git a/connectivity/source/drivers/macab/MacabStatement.cxx b/connectivity/source/drivers/macab/MacabStatement.cxx
index 2fa468e..7140c41 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 0328649..aaaa4b2 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 >;


More information about the Libreoffice-commits mailing list