diff options
Diffstat (limited to 'connectivity/source/drivers/evoab2/NConnection.cxx')
-rw-r--r-- | connectivity/source/drivers/evoab2/NConnection.cxx | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/connectivity/source/drivers/evoab2/NConnection.cxx b/connectivity/source/drivers/evoab2/NConnection.cxx index fa6fd275e5b6..2971992b9dc1 100644 --- a/connectivity/source/drivers/evoab2/NConnection.cxx +++ b/connectivity/source/drivers/evoab2/NConnection.cxx @@ -41,8 +41,7 @@ using namespace ::com::sun::star::sdbc; using namespace ::com::sun::star::lang; OEvoabConnection::OEvoabConnection(OEvoabDriver& _rDriver) - : OSubComponent<OEvoabConnection, OConnection_BASE>( static_cast<cppu::OWeakObject*>(&_rDriver), this ) - , m_rDriver(_rDriver) + : m_rDriver(_rDriver) , m_eSDBCAddressType(SDBCAddress::EVO_LOCAL) , m_xCatalog(nullptr) { @@ -59,11 +58,6 @@ OEvoabConnection::~OEvoabConnection() } -void SAL_CALL OEvoabConnection::release() throw() -{ - release_ChildImpl(); -} - // XServiceInfo IMPLEMENT_SERVICE_INFO(OEvoabConnection, "com.sun.star.sdbc.drivers.evoab.Connection", "com.sun.star.sdbc.Connection") @@ -198,7 +192,6 @@ void OEvoabConnection::disposing() // we noticed that we should be destroyed in near future so we have to dispose our statements ::osl::MutexGuard aGuard(m_aMutex); OConnection_BASE::disposing(); - dispose_ChildImpl(); } // -------------------------------- stubbed methods ------------------------------------------------ |