Kaydet (Commit) 3ec6de78 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:datamembershadow

Change-Id: I773bb19ae33709421fde01426716dcf52065402f
üst 8442bda2
...@@ -65,12 +65,11 @@ IMPLEMENT_SERVICE_INFO(MacabStatement, "com.sun.star.sdbc.drivers.MacabStatement ...@@ -65,12 +65,11 @@ IMPLEMENT_SERVICE_INFO(MacabStatement, "com.sun.star.sdbc.drivers.MacabStatement
MacabCommonStatement::MacabCommonStatement(MacabConnection* _pConnection ) MacabCommonStatement::MacabCommonStatement(MacabConnection* _pConnection )
: MacabCommonStatement_BASE(m_aMutex), : MacabCommonStatement_BASE(m_aMutex),
OPropertySetHelper(MacabCommonStatement_BASE::rBHelper), OPropertySetHelper(rBHelper),
m_aParser(_pConnection->getDriver()->getComponentContext()), m_aParser(_pConnection->getDriver()->getComponentContext()),
m_aSQLIterator(_pConnection, _pConnection->createCatalog()->getTables(), m_aParser ), m_aSQLIterator(_pConnection, _pConnection->createCatalog()->getTables(), m_aParser ),
m_pParseTree(nullptr), m_pParseTree(nullptr),
m_pConnection(_pConnection), m_pConnection(_pConnection)
rBHelper(MacabCommonStatement_BASE::rBHelper)
{ {
m_pConnection->acquire(); m_pConnection->acquire();
} }
...@@ -374,7 +373,7 @@ void SAL_CALL MacabCommonStatement::cancel( ) throw(RuntimeException) ...@@ -374,7 +373,7 @@ void SAL_CALL MacabCommonStatement::cancel( ) throw(RuntimeException)
{ {
::osl::MutexGuard aGuard( m_aMutex ); ::osl::MutexGuard aGuard( m_aMutex );
checkDisposed(MacabCommonStatement_BASE::rBHelper.bDisposed); checkDisposed(rBHelper.bDisposed);
// cancel the current sql statement // cancel the current sql statement
} }
...@@ -382,7 +381,7 @@ void SAL_CALL MacabCommonStatement::close( ) throw(SQLException, RuntimeExcepti ...@@ -382,7 +381,7 @@ void SAL_CALL MacabCommonStatement::close( ) throw(SQLException, RuntimeExcepti
{ {
{ {
::osl::MutexGuard aGuard( m_aMutex ); ::osl::MutexGuard aGuard( m_aMutex );
checkDisposed(MacabCommonStatement_BASE::rBHelper.bDisposed); checkDisposed(rBHelper.bDisposed);
} }
dispose(); dispose();
...@@ -392,7 +391,7 @@ sal_Bool SAL_CALL MacabCommonStatement::execute( ...@@ -392,7 +391,7 @@ sal_Bool SAL_CALL MacabCommonStatement::execute(
const OUString& sql ) throw(SQLException, RuntimeException) const OUString& sql ) throw(SQLException, RuntimeException)
{ {
::osl::MutexGuard aGuard( m_aMutex ); ::osl::MutexGuard aGuard( m_aMutex );
checkDisposed(MacabCommonStatement_BASE::rBHelper.bDisposed); checkDisposed(rBHelper.bDisposed);
Reference< XResultSet > xRS = executeQuery(sql); Reference< XResultSet > xRS = executeQuery(sql);
...@@ -403,7 +402,7 @@ Reference< XResultSet > SAL_CALL MacabCommonStatement::executeQuery( ...@@ -403,7 +402,7 @@ Reference< XResultSet > SAL_CALL MacabCommonStatement::executeQuery(
const OUString& sql ) throw(SQLException, RuntimeException) const OUString& sql ) throw(SQLException, RuntimeException)
{ {
::osl::MutexGuard aGuard( m_aMutex ); ::osl::MutexGuard aGuard( m_aMutex );
checkDisposed(MacabCommonStatement_BASE::rBHelper.bDisposed); checkDisposed(rBHelper.bDisposed);
OSL_TRACE("Mac OS Address book - SQL Request: %s", OUtoCStr(sql)); 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)); ...@@ -462,7 +461,7 @@ OSL_TRACE("Mac OS Address book - SQL Request: %s", OUtoCStr(sql));
Reference< XConnection > SAL_CALL MacabCommonStatement::getConnection( ) throw(SQLException, RuntimeException) Reference< XConnection > SAL_CALL MacabCommonStatement::getConnection( ) throw(SQLException, RuntimeException)
{ {
::osl::MutexGuard aGuard( m_aMutex ); ::osl::MutexGuard aGuard( m_aMutex );
checkDisposed(MacabCommonStatement_BASE::rBHelper.bDisposed); checkDisposed(rBHelper.bDisposed);
// just return our connection here // just return our connection here
return m_pConnection; return m_pConnection;
...@@ -471,7 +470,7 @@ Reference< XConnection > SAL_CALL MacabCommonStatement::getConnection( ) throw( ...@@ -471,7 +470,7 @@ Reference< XConnection > SAL_CALL MacabCommonStatement::getConnection( ) throw(
sal_Int32 SAL_CALL MacabCommonStatement::executeUpdate( const OUString& ) throw(SQLException, RuntimeException) sal_Int32 SAL_CALL MacabCommonStatement::executeUpdate( const OUString& ) throw(SQLException, RuntimeException)
{ {
::osl::MutexGuard aGuard( m_aMutex ); ::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 // the return values gives information about how many rows are affected by executing the sql statement
return 0; return 0;
...@@ -480,7 +479,7 @@ sal_Int32 SAL_CALL MacabCommonStatement::executeUpdate( const OUString& ) throw( ...@@ -480,7 +479,7 @@ sal_Int32 SAL_CALL MacabCommonStatement::executeUpdate( const OUString& ) throw(
Any SAL_CALL MacabCommonStatement::getWarnings( ) throw(SQLException, RuntimeException) Any SAL_CALL MacabCommonStatement::getWarnings( ) throw(SQLException, RuntimeException)
{ {
::osl::MutexGuard aGuard( m_aMutex ); ::osl::MutexGuard aGuard( m_aMutex );
checkDisposed(MacabCommonStatement_BASE::rBHelper.bDisposed); checkDisposed(rBHelper.bDisposed);
return makeAny(m_aLastWarning); return makeAny(m_aLastWarning);
} }
...@@ -488,7 +487,7 @@ Any SAL_CALL MacabCommonStatement::getWarnings( ) throw(SQLException, RuntimeEx ...@@ -488,7 +487,7 @@ Any SAL_CALL MacabCommonStatement::getWarnings( ) throw(SQLException, RuntimeEx
void SAL_CALL MacabCommonStatement::clearWarnings( ) throw(SQLException, RuntimeException) void SAL_CALL MacabCommonStatement::clearWarnings( ) throw(SQLException, RuntimeException)
{ {
::osl::MutexGuard aGuard( m_aMutex ); ::osl::MutexGuard aGuard( m_aMutex );
checkDisposed(MacabCommonStatement_BASE::rBHelper.bDisposed); checkDisposed(rBHelper.bDisposed);
m_aLastWarning = SQLWarning(); m_aLastWarning = SQLWarning();
} }
......
...@@ -95,7 +95,7 @@ namespace connectivity ...@@ -95,7 +95,7 @@ namespace connectivity
virtual ~MacabCommonStatement() override; virtual ~MacabCommonStatement() override;
public: public:
::cppu::OBroadcastHelper& rBHelper; using MacabCommonStatement_BASE::rBHelper;
explicit MacabCommonStatement(MacabConnection *_pConnection); explicit MacabCommonStatement(MacabConnection *_pConnection);
using MacabCommonStatement_BASE::operator css::uno::Reference< css::uno::XInterface >; using MacabCommonStatement_BASE::operator css::uno::Reference< css::uno::XInterface >;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment