diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-12-06 17:13:51 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-12-06 17:13:59 +0100 |
commit | 24d7831da52dbb0fdc2f1aa2a5f25f3fa4477acf (patch) | |
tree | 78a389350e6ad0b1c3dda085512fcf0f7c56bed3 /connectivity | |
parent | d35849b6f718990869b01209865bb70cb7343ceb (diff) |
-Werror,-Wunused-private-field
Change-Id: I1440856b2a54302f3d95ed1d915fb64523f0db3b
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/evoab2/NStatement.cxx | 2 | ||||
-rw-r--r-- | connectivity/source/drivers/evoab2/NStatement.hxx | 4 |
2 files changed, 0 insertions, 6 deletions
diff --git a/connectivity/source/drivers/evoab2/NStatement.cxx b/connectivity/source/drivers/evoab2/NStatement.cxx index bd377e5ffb55..949a4e6a737e 100644 --- a/connectivity/source/drivers/evoab2/NStatement.cxx +++ b/connectivity/source/drivers/evoab2/NStatement.cxx @@ -53,7 +53,6 @@ OCommonStatement::OCommonStatement(OEvoabConnection* _pConnection) , ::comphelper::OPropertyContainer(OCommonStatement_IBase::rBHelper) , OStatement_CBase( (::cppu::OWeakObject*)_pConnection, this ) , m_xResultSet(NULL) - , m_pResultSet(NULL) , m_pConnection(_pConnection) , m_aParser(_pConnection->getDriver().getComponentContext()) , m_aSQLIterator( _pConnection, _pConnection->createCatalog()->getTables(), m_aParser, NULL ) @@ -66,7 +65,6 @@ OCommonStatement::OCommonStatement(OEvoabConnection* _pConnection) , m_nFetchDirection(FetchDirection::FORWARD) , m_nResultSetConcurrency(ResultSetConcurrency::UPDATABLE) , m_bEscapeProcessing(sal_True) - , rBHelper(OCommonStatement_IBase::rBHelper) { m_pConnection->acquire(); diff --git a/connectivity/source/drivers/evoab2/NStatement.hxx b/connectivity/source/drivers/evoab2/NStatement.hxx index 2036199c4040..187b1fde70d6 100644 --- a/connectivity/source/drivers/evoab2/NStatement.hxx +++ b/connectivity/source/drivers/evoab2/NStatement.hxx @@ -47,7 +47,6 @@ namespace connectivity { namespace evoab { - class OEvoabResultSet; class OEvoabConnection; typedef ::cppu::WeakComponentImplHelper2 < ::com::sun::star::sdbc::XWarningsSupplier , ::com::sun::star::sdbc::XCloseable @@ -148,7 +147,6 @@ namespace connectivity private: ::com::sun::star::uno::WeakReference< ::com::sun::star::sdbc::XResultSet> m_xResultSet; // The last ResultSet created - OEvoabResultSet *m_pResultSet; OEvoabConnection *m_pConnection; connectivity::OSQLParser m_aParser; connectivity::OSQLParseTreeIterator m_aSQLIterator; @@ -166,8 +164,6 @@ namespace connectivity sal_Bool m_bEscapeProcessing; // </properties> - ::cppu::OBroadcastHelper& rBHelper; - protected: void disposeResultSet(); |