diff options
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/evoab2/NDatabaseMetaData.hxx | 2 | ||||
-rw-r--r-- | connectivity/source/drivers/evoab2/NResultSetMetaData.hxx | 2 | ||||
-rw-r--r-- | connectivity/source/drivers/evoab2/NStatement.hxx | 1 |
3 files changed, 0 insertions, 5 deletions
diff --git a/connectivity/source/drivers/evoab2/NDatabaseMetaData.hxx b/connectivity/source/drivers/evoab2/NDatabaseMetaData.hxx index fdefba79eb8b..52ef3b0eed16 100644 --- a/connectivity/source/drivers/evoab2/NDatabaseMetaData.hxx +++ b/connectivity/source/drivers/evoab2/NDatabaseMetaData.hxx @@ -85,8 +85,6 @@ namespace connectivity virtual ~OEvoabDatabaseMetaData() override; public: - OEvoabConnection* getOwnConnection() const { return m_pConnection; } - explicit OEvoabDatabaseMetaData(OEvoabConnection* _pCon); // as I mentioned before this interface is really BIG diff --git a/connectivity/source/drivers/evoab2/NResultSetMetaData.hxx b/connectivity/source/drivers/evoab2/NResultSetMetaData.hxx index eaa28e4b44af..9c309aaddb67 100644 --- a/connectivity/source/drivers/evoab2/NResultSetMetaData.hxx +++ b/connectivity/source/drivers/evoab2/NResultSetMetaData.hxx @@ -47,8 +47,6 @@ namespace connectivity void setEvoabFields(const ::rtl::Reference<connectivity::OSQLColumns> &xColumns); sal_uInt32 fieldAtColumn(sal_Int32 columnIndex) const { return m_aEvoabFields[columnIndex - 1]; } - sal_Int32 getFieldSize() const - {return m_aEvoabFields.size();} /// Avoid ambiguous cast error from the compiler. operator css::uno::Reference< css::sdbc::XResultSetMetaData > () throw() { return this; } diff --git a/connectivity/source/drivers/evoab2/NStatement.hxx b/connectivity/source/drivers/evoab2/NStatement.hxx index 7c9711cc03a2..87ede6f43ed9 100644 --- a/connectivity/source/drivers/evoab2/NStatement.hxx +++ b/connectivity/source/drivers/evoab2/NStatement.hxx @@ -57,7 +57,6 @@ namespace connectivity sal_Int32 nField; bool bAscending; - FieldSort() : nField(0), bAscending( true ) { } FieldSort( const sal_Int32 _nField, const bool _bAscending ) : nField( _nField ), bAscending( _bAscending ) { } }; typedef std::vector< FieldSort > SortDescriptor; |