summaryrefslogtreecommitdiffstats
path: root/connectivity/source/inc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-11-22 17:40:18 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-11-22 17:40:18 +0100
commitf70ae430a047f44ed16868aa8a802c5f65404cf5 (patch)
tree5923abdec200b1ee281936571bde12b4b1a1abd7 /connectivity/source/inc
parentRevert "Timer::Start must be called with SolarMutex locked" (diff)
downloadcore-f70ae430a047f44ed16868aa8a802c5f65404cf5.tar.gz
core-f70ae430a047f44ed16868aa8a802c5f65404cf5.zip
OPreparedStatement::m_aTypeInfo is unused
Change-Id: I89a43b06a9983e2fac374298db2fef17f3671ab5
Diffstat (limited to 'connectivity/source/inc')
-rw-r--r--connectivity/source/inc/ado/ACallableStatement.hxx2
-rw-r--r--connectivity/source/inc/ado/APreparedStatement.hxx3
2 files changed, 2 insertions, 3 deletions
diff --git a/connectivity/source/inc/ado/ACallableStatement.hxx b/connectivity/source/inc/ado/ACallableStatement.hxx
index ed35e9639b4c..726bf6929ee9 100644
--- a/connectivity/source/inc/ado/ACallableStatement.hxx
+++ b/connectivity/source/inc/ado/ACallableStatement.hxx
@@ -42,7 +42,7 @@ namespace connectivity
DECLARE_SERVICE_INFO();
virtual ~OCallableStatement() override {} ;
// a Constructor, that is needed for when Returning the Object is needed:
- OCallableStatement( OConnection* _pConnection,const OTypeInfoMap& TypeInfo,const OUString& sql );
+ OCallableStatement( OConnection* _pConnection, const OUString& sql );
virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) throw(css::uno::RuntimeException) override;
virtual void SAL_CALL acquire() throw() override;
diff --git a/connectivity/source/inc/ado/APreparedStatement.hxx b/connectivity/source/inc/ado/APreparedStatement.hxx
index 971faa6ad977..73fce940e65d 100644
--- a/connectivity/source/inc/ado/APreparedStatement.hxx
+++ b/connectivity/source/inc/ado/APreparedStatement.hxx
@@ -53,7 +53,6 @@ namespace connectivity
// Data attributes
css::uno::Reference< css::sdbc::XResultSetMetaData > m_xMetaData;
- const OTypeInfoMap& m_aTypeInfo;
ADOParameters* m_pParameters;
virtual ~OPreparedStatement() override;
@@ -61,7 +60,7 @@ namespace connectivity
public:
DECLARE_SERVICE_INFO();
// a Constructor, that is needed for when Returning the Object is needed:
- OPreparedStatement( OConnection* _pConnection,const OTypeInfoMap& TypeInfo,const OUString& sql);
+ OPreparedStatement( OConnection* _pConnection, const OUString& sql);
virtual void SAL_CALL acquire() throw() override;
virtual void SAL_CALL release() throw() override;