summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers')
-rw-r--r--connectivity/source/drivers/evoab2/NConnection.hxx2
-rw-r--r--connectivity/source/drivers/evoab2/NDatabaseMetaData.hxx2
-rw-r--r--connectivity/source/drivers/evoab2/NDriver.hxx2
-rw-r--r--connectivity/source/drivers/evoab2/NPreparedStatement.hxx2
-rw-r--r--connectivity/source/drivers/evoab2/NResultSet.cxx4
-rw-r--r--connectivity/source/drivers/evoab2/NResultSet.hxx2
-rw-r--r--connectivity/source/drivers/evoab2/NResultSetMetaData.hxx2
-rw-r--r--connectivity/source/drivers/evoab2/NStatement.hxx4
-rw-r--r--connectivity/source/drivers/firebird/Connection.hxx2
-rw-r--r--connectivity/source/drivers/firebird/DatabaseMetaData.hxx2
-rw-r--r--connectivity/source/drivers/firebird/Driver.hxx2
-rw-r--r--connectivity/source/drivers/firebird/PreparedStatement.hxx2
-rw-r--r--connectivity/source/drivers/firebird/ResultSet.hxx2
-rw-r--r--connectivity/source/drivers/firebird/ResultSetMetaData.hxx2
-rw-r--r--connectivity/source/drivers/firebird/Statement.hxx2
-rw-r--r--connectivity/source/drivers/firebird/StatementCommonBase.hxx2
-rw-r--r--connectivity/source/drivers/hsqldb/HTerminateListener.hxx2
-rw-r--r--connectivity/source/drivers/mork/MConnection.hxx2
-rw-r--r--connectivity/source/drivers/mork/MDatabaseMetaData.hxx2
-rw-r--r--connectivity/source/drivers/mork/MDriver.hxx2
-rw-r--r--connectivity/source/drivers/mork/MPreparedStatement.hxx2
-rw-r--r--connectivity/source/drivers/mork/MQueryHelper.hxx2
-rw-r--r--connectivity/source/drivers/mork/MResultSet.hxx2
-rw-r--r--connectivity/source/drivers/mork/MResultSetMetaData.hxx2
-rw-r--r--connectivity/source/drivers/mork/MStatement.hxx4
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MMozillaBootstrap.hxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_baseresultset.hxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_connection.cxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_connection.hxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_preparedstatement.hxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_resultset.hxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_sequenceresultset.hxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_statement.hxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_xcolumns.hxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_xindexcolumns.hxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_xindexes.hxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_xkeycolumns.hxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_xkeys.hxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_xtables.hxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_xusers.hxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_xviews.hxx2
41 files changed, 44 insertions, 44 deletions
diff --git a/connectivity/source/drivers/evoab2/NConnection.hxx b/connectivity/source/drivers/evoab2/NConnection.hxx
index dd77b00bd6ff..ecc7b76c3229 100644
--- a/connectivity/source/drivers/evoab2/NConnection.hxx
+++ b/connectivity/source/drivers/evoab2/NConnection.hxx
@@ -61,7 +61,7 @@ namespace connectivity
OString m_aPassword;
::dbtools::WarningsContainer m_aWarnings;
- virtual ~OEvoabConnection();
+ virtual ~OEvoabConnection() override;
public:
explicit OEvoabConnection( OEvoabDriver& _rDriver );
diff --git a/connectivity/source/drivers/evoab2/NDatabaseMetaData.hxx b/connectivity/source/drivers/evoab2/NDatabaseMetaData.hxx
index 610dda0eedd7..5d2d7645b3cb 100644
--- a/connectivity/source/drivers/evoab2/NDatabaseMetaData.hxx
+++ b/connectivity/source/drivers/evoab2/NDatabaseMetaData.hxx
@@ -83,7 +83,7 @@ namespace connectivity
virtual sal_Int32 impl_getMaxTablesInSelect_throw( ) override;
virtual bool impl_storesMixedCaseQuotedIdentifiers_throw( ) override;
- virtual ~OEvoabDatabaseMetaData();
+ virtual ~OEvoabDatabaseMetaData() override;
public:
inline OEvoabConnection* getOwnConnection() const { return m_pConnection; }
diff --git a/connectivity/source/drivers/evoab2/NDriver.hxx b/connectivity/source/drivers/evoab2/NDriver.hxx
index 6372a80b4d02..e0dc13dd94a2 100644
--- a/connectivity/source/drivers/evoab2/NDriver.hxx
+++ b/connectivity/source/drivers/evoab2/NDriver.hxx
@@ -51,7 +51,7 @@ namespace connectivity
public:
explicit OEvoabDriver(const css::uno::Reference< css::lang::XMultiServiceFactory >& _rxFactory);
- virtual ~OEvoabDriver();
+ virtual ~OEvoabDriver() override;
// OComponentHelper
virtual void SAL_CALL disposing() override;
diff --git a/connectivity/source/drivers/evoab2/NPreparedStatement.hxx b/connectivity/source/drivers/evoab2/NPreparedStatement.hxx
index 73e62583d0a7..dc002b2c6d1e 100644
--- a/connectivity/source/drivers/evoab2/NPreparedStatement.hxx
+++ b/connectivity/source/drivers/evoab2/NPreparedStatement.hxx
@@ -70,7 +70,7 @@ namespace connectivity
css::uno::Reference< css::sdbc::XResultSetMetaData > m_xMetaData;
protected:
- virtual ~OEvoabPreparedStatement();
+ virtual ~OEvoabPreparedStatement() override;
public:
explicit OEvoabPreparedStatement( OEvoabConnection* _pConnection );
diff --git a/connectivity/source/drivers/evoab2/NResultSet.cxx b/connectivity/source/drivers/evoab2/NResultSet.cxx
index 0ccc1ec5123d..eaf526dee639 100644
--- a/connectivity/source/drivers/evoab2/NResultSet.cxx
+++ b/connectivity/source/drivers/evoab2/NResultSet.cxx
@@ -389,7 +389,7 @@ public:
{
}
- virtual ~OEvoabVersion36Helper()
+ virtual ~OEvoabVersion36Helper() override
{
freeContacts();
}
@@ -535,7 +535,7 @@ public:
{
}
- virtual ~OEvoabVersion35Helper()
+ virtual ~OEvoabVersion35Helper() override
{
freeContacts();
}
diff --git a/connectivity/source/drivers/evoab2/NResultSet.hxx b/connectivity/source/drivers/evoab2/NResultSet.hxx
index 6031b3e26797..20cee2374744 100644
--- a/connectivity/source/drivers/evoab2/NResultSet.hxx
+++ b/connectivity/source/drivers/evoab2/NResultSet.hxx
@@ -112,7 +112,7 @@ namespace connectivity
virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper() override;
// you can't delete objects of this type
- virtual ~OEvoabResultSet();
+ virtual ~OEvoabResultSet() override;
public:
DECLARE_SERVICE_INFO();
diff --git a/connectivity/source/drivers/evoab2/NResultSetMetaData.hxx b/connectivity/source/drivers/evoab2/NResultSetMetaData.hxx
index 4fa89e261897..7cae14957bcd 100644
--- a/connectivity/source/drivers/evoab2/NResultSetMetaData.hxx
+++ b/connectivity/source/drivers/evoab2/NResultSetMetaData.hxx
@@ -40,7 +40,7 @@ namespace connectivity
::std::vector<sal_Int32> m_aEvoabFields;
protected:
- virtual ~OEvoabResultSetMetaData();
+ virtual ~OEvoabResultSetMetaData() override;
public:
explicit OEvoabResultSetMetaData(const OUString& _aTableName);
void setEvoabFields(const ::rtl::Reference<connectivity::OSQLColumns> &xColumns) throw(css::sdbc::SQLException);
diff --git a/connectivity/source/drivers/evoab2/NStatement.hxx b/connectivity/source/drivers/evoab2/NStatement.hxx
index f54f37725d5d..54085d78b381 100644
--- a/connectivity/source/drivers/evoab2/NStatement.hxx
+++ b/connectivity/source/drivers/evoab2/NStatement.hxx
@@ -173,7 +173,7 @@ namespace connectivity
// OPropertySetHelper
virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper() override;
- virtual ~OCommonStatement();
+ virtual ~OCommonStatement() override;
protected:
void parseSql( const OUString& sql, QueryData& _out_rQueryData );
@@ -239,7 +239,7 @@ namespace connectivity
,public OStatement_IBase
{
protected:
- virtual ~OStatement(){}
+ virtual ~OStatement() override {}
public:
explicit OStatement( OEvoabConnection* _pConnection)
diff --git a/connectivity/source/drivers/firebird/Connection.hxx b/connectivity/source/drivers/firebird/Connection.hxx
index 2bd7675f3871..33673032134e 100644
--- a/connectivity/source/drivers/firebird/Connection.hxx
+++ b/connectivity/source/drivers/firebird/Connection.hxx
@@ -185,7 +185,7 @@ namespace connectivity
public:
explicit Connection(FirebirdDriver* _pDriver);
- virtual ~Connection();
+ virtual ~Connection() override;
void construct( const ::rtl::OUString& url,
const css::uno::Sequence< css::beans::PropertyValue >& info)
diff --git a/connectivity/source/drivers/firebird/DatabaseMetaData.hxx b/connectivity/source/drivers/firebird/DatabaseMetaData.hxx
index afd069855d9d..fc9b1cfdb037 100644
--- a/connectivity/source/drivers/firebird/DatabaseMetaData.hxx
+++ b/connectivity/source/drivers/firebird/DatabaseMetaData.hxx
@@ -41,7 +41,7 @@ namespace connectivity
public:
explicit ODatabaseMetaData(Connection* _pCon);
- virtual ~ODatabaseMetaData();
+ virtual ~ODatabaseMetaData() override;
// as I mentioned before this interface is really BIG
// XDatabaseMetaData
diff --git a/connectivity/source/drivers/firebird/Driver.hxx b/connectivity/source/drivers/firebird/Driver.hxx
index e3ce787755b0..ac017d788018 100644
--- a/connectivity/source/drivers/firebird/Driver.hxx
+++ b/connectivity/source/drivers/firebird/Driver.hxx
@@ -60,7 +60,7 @@ namespace connectivity
public:
explicit FirebirdDriver(const css::uno::Reference< css::uno::XComponentContext >& _rxContext);
- virtual ~FirebirdDriver();
+ virtual ~FirebirdDriver() override;
const css::uno::Reference<css::uno::XComponentContext>& getContext() const { return m_aContext; }
// OComponentHelper
diff --git a/connectivity/source/drivers/firebird/PreparedStatement.hxx b/connectivity/source/drivers/firebird/PreparedStatement.hxx
index 33e1421e6f4a..d98e46d2950c 100644
--- a/connectivity/source/drivers/firebird/PreparedStatement.hxx
+++ b/connectivity/source/drivers/firebird/PreparedStatement.hxx
@@ -83,7 +83,7 @@ namespace connectivity
virtual void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle,
const css::uno::Any& rValue)
throw (css::uno::Exception, std::exception) override;
- virtual ~OPreparedStatement();
+ virtual ~OPreparedStatement() override;
public:
DECLARE_SERVICE_INFO();
// a constructor, which is required for returning objects:
diff --git a/connectivity/source/drivers/firebird/ResultSet.hxx b/connectivity/source/drivers/firebird/ResultSet.hxx
index e0f3e463415c..fb4d929a8cb7 100644
--- a/connectivity/source/drivers/firebird/ResultSet.hxx
+++ b/connectivity/source/drivers/firebird/ResultSet.hxx
@@ -120,7 +120,7 @@ namespace connectivity
css::uno::RuntimeException);
// you can't delete objects of this type
- virtual ~OResultSet();
+ virtual ~OResultSet() override;
public:
DECLARE_SERVICE_INFO();
diff --git a/connectivity/source/drivers/firebird/ResultSetMetaData.hxx b/connectivity/source/drivers/firebird/ResultSetMetaData.hxx
index cac8a013fcad..3c984e6d158f 100644
--- a/connectivity/source/drivers/firebird/ResultSetMetaData.hxx
+++ b/connectivity/source/drivers/firebird/ResultSetMetaData.hxx
@@ -42,7 +42,7 @@ namespace connectivity
XSQLDA* m_pSqlda;
OUString m_sTableName;
- virtual ~OResultSetMetaData();
+ virtual ~OResultSetMetaData() override;
void verifyValidColumn(sal_Int32 column) throw(css::sdbc::SQLException);
public:
diff --git a/connectivity/source/drivers/firebird/Statement.hxx b/connectivity/source/drivers/firebird/Statement.hxx
index ade5a8de5d3a..308d2f9ae478 100644
--- a/connectivity/source/drivers/firebird/Statement.hxx
+++ b/connectivity/source/drivers/firebird/Statement.hxx
@@ -38,7 +38,7 @@ namespace connectivity
public css::lang::XServiceInfo
{
protected:
- virtual ~OStatement(){}
+ virtual ~OStatement() override {}
XSQLDA* m_pSqlda;
diff --git a/connectivity/source/drivers/firebird/StatementCommonBase.hxx b/connectivity/source/drivers/firebird/StatementCommonBase.hxx
index b4d25775d6ea..ea5006f9ce31 100644
--- a/connectivity/source/drivers/firebird/StatementCommonBase.hxx
+++ b/connectivity/source/drivers/firebird/StatementCommonBase.hxx
@@ -85,7 +85,7 @@ namespace connectivity
virtual void SAL_CALL getFastPropertyValue(
css::uno::Any& rValue,
sal_Int32 nHandle) const override;
- virtual ~OStatementCommonBase();
+ virtual ~OStatementCommonBase() override;
void prepareAndDescribeStatement(const OUString& sqlIn,
XSQLDA*& pOutSqlda,
diff --git a/connectivity/source/drivers/hsqldb/HTerminateListener.hxx b/connectivity/source/drivers/hsqldb/HTerminateListener.hxx
index 95dc90980523..5b5a86da9713 100644
--- a/connectivity/source/drivers/hsqldb/HTerminateListener.hxx
+++ b/connectivity/source/drivers/hsqldb/HTerminateListener.hxx
@@ -34,7 +34,7 @@ namespace connectivity
{
ODriverDelegator* m_pDriver;
protected:
- virtual ~OConnectionController() {m_pDriver = nullptr;}
+ virtual ~OConnectionController() override {m_pDriver = nullptr;}
public:
explicit OConnectionController(ODriverDelegator* _pDriver) : m_pDriver(_pDriver){}
diff --git a/connectivity/source/drivers/mork/MConnection.hxx b/connectivity/source/drivers/mork/MConnection.hxx
index 125908fd9d62..0e517daafc55 100644
--- a/connectivity/source/drivers/mork/MConnection.hxx
+++ b/connectivity/source/drivers/mork/MConnection.hxx
@@ -50,7 +50,7 @@ namespace connectivity
public:
void construct( const OUString& url,const css::uno::Sequence< css::beans::PropertyValue >& info) throw(css::sdbc::SQLException);
explicit OConnection(MorkDriver* const driver);
- virtual ~OConnection();
+ virtual ~OConnection() override;
const rtl::Reference<MorkDriver>& getDriver() {return m_xDriver;};
MorkParser* getMorkParser(const OString& t) {return t == "CollectedAddressBook" ? m_pHistory : m_pBook;};
diff --git a/connectivity/source/drivers/mork/MDatabaseMetaData.hxx b/connectivity/source/drivers/mork/MDatabaseMetaData.hxx
index 931922ecf0ac..74c7b8ecc1b0 100644
--- a/connectivity/source/drivers/mork/MDatabaseMetaData.hxx
+++ b/connectivity/source/drivers/mork/MDatabaseMetaData.hxx
@@ -29,7 +29,7 @@ namespace connectivity
ODatabaseMetaDataResultSet::ORows& SAL_CALL getColumnRows( const OUString& tableNamePattern, const OUString& columnNamePattern ) throw( css::sdbc::SQLException );
protected:
- virtual ~ODatabaseMetaData();
+ virtual ~ODatabaseMetaData() override;
public:
explicit ODatabaseMetaData(OConnection* _pCon);
diff --git a/connectivity/source/drivers/mork/MDriver.hxx b/connectivity/source/drivers/mork/MDriver.hxx
index 52968d966aad..e17b5ed7950d 100644
--- a/connectivity/source/drivers/mork/MDriver.hxx
+++ b/connectivity/source/drivers/mork/MDriver.hxx
@@ -42,7 +42,7 @@ private:
MorkDriver(const MorkDriver&) = delete;
MorkDriver& operator=(const MorkDriver&) = delete;
- virtual ~MorkDriver() {}
+ virtual ~MorkDriver() override {}
virtual OUString SAL_CALL getImplementationName()
throw (css::uno::RuntimeException, std::exception) override;
diff --git a/connectivity/source/drivers/mork/MPreparedStatement.hxx b/connectivity/source/drivers/mork/MPreparedStatement.hxx
index 2aa9aef1c273..eeed5fdb91bb 100644
--- a/connectivity/source/drivers/mork/MPreparedStatement.hxx
+++ b/connectivity/source/drivers/mork/MPreparedStatement.hxx
@@ -52,7 +52,7 @@ namespace connectivity
virtual void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle,
const css::uno::Any& rValue)
throw (css::uno::Exception, std::exception) override;
- virtual ~OPreparedStatement();
+ virtual ~OPreparedStatement() override;
virtual void SAL_CALL disposing() override;
diff --git a/connectivity/source/drivers/mork/MQueryHelper.hxx b/connectivity/source/drivers/mork/MQueryHelper.hxx
index 1081f75ccd0d..907c8fdd42dc 100644
--- a/connectivity/source/drivers/mork/MQueryHelper.hxx
+++ b/connectivity/source/drivers/mork/MQueryHelper.hxx
@@ -127,7 +127,7 @@ namespace connectivity
m_aExprCondType( OR )
{}
- virtual ~MQueryExpression() {
+ virtual ~MQueryExpression() override {
for (ExprVector::iterator i(m_aExprVector.begin());
i != m_aExprVector.end(); ++i)
{
diff --git a/connectivity/source/drivers/mork/MResultSet.hxx b/connectivity/source/drivers/mork/MResultSet.hxx
index 57a651954920..d46e15c353f5 100644
--- a/connectivity/source/drivers/mork/MResultSet.hxx
+++ b/connectivity/source/drivers/mork/MResultSet.hxx
@@ -111,7 +111,7 @@ namespace connectivity
) const override;
// you can't delete objects of this type
- virtual ~OResultSet();
+ virtual ~OResultSet() override;
public:
DECLARE_SERVICE_INFO();
diff --git a/connectivity/source/drivers/mork/MResultSetMetaData.hxx b/connectivity/source/drivers/mork/MResultSetMetaData.hxx
index 1aea863bb026..2e60a2ed86a4 100644
--- a/connectivity/source/drivers/mork/MResultSetMetaData.hxx
+++ b/connectivity/source/drivers/mork/MResultSetMetaData.hxx
@@ -44,7 +44,7 @@ namespace connectivity
bool m_bReadOnly;
protected:
- virtual ~OResultSetMetaData();
+ virtual ~OResultSetMetaData() override;
public:
// a constructor that is needed to return the object:
// OResultSetMetaData(OConnection* _pConnection) : m_pConnection(_pConnection){}
diff --git a/connectivity/source/drivers/mork/MStatement.hxx b/connectivity/source/drivers/mork/MStatement.hxx
index d199142943fa..883957524230 100644
--- a/connectivity/source/drivers/mork/MStatement.hxx
+++ b/connectivity/source/drivers/mork/MStatement.hxx
@@ -96,7 +96,7 @@ namespace connectivity
virtual void SAL_CALL getFastPropertyValue(
css::uno::Any& rValue,
sal_Int32 nHandle) const override;
- virtual ~OCommonStatement();
+ virtual ~OCommonStatement() override;
protected:
@@ -167,7 +167,7 @@ namespace connectivity
public css::lang::XServiceInfo
{
protected:
- virtual ~OStatement(){}
+ virtual ~OStatement() override {}
public:
// a constructor, for when the object needs to be returned:
explicit OStatement( OConnection* _pConnection);
diff --git a/connectivity/source/drivers/mozab/bootstrap/MMozillaBootstrap.hxx b/connectivity/source/drivers/mozab/bootstrap/MMozillaBootstrap.hxx
index 188f54d3d5d7..9b1b9cb4dc89 100644
--- a/connectivity/source/drivers/mozab/bootstrap/MMozillaBootstrap.hxx
+++ b/connectivity/source/drivers/mozab/bootstrap/MMozillaBootstrap.hxx
@@ -39,7 +39,7 @@ namespace connectivity
{
protected:
::osl::Mutex m_aMutex; // mutex is need to control member access
- virtual ~MozillaBootstrap();
+ virtual ~MozillaBootstrap() override;
protected:
ProfileAccess * m_ProfileAccess;
public:
diff --git a/connectivity/source/drivers/postgresql/pq_baseresultset.hxx b/connectivity/source/drivers/postgresql/pq_baseresultset.hxx
index 3a0b888334aa..9f0d3c696ccb 100644
--- a/connectivity/source/drivers/postgresql/pq_baseresultset.hxx
+++ b/connectivity/source/drivers/postgresql/pq_baseresultset.hxx
@@ -98,7 +98,7 @@ protected:
sal_Int32 rowCount,
sal_Int32 columnCount,
const css::uno::Reference< css::script::XTypeConverter > &tc );
- virtual ~BaseResultSet();
+ virtual ~BaseResultSet() override;
public: // XInterface
virtual void SAL_CALL acquire() throw() override { BaseResultSet_BASE::acquire(); }
diff --git a/connectivity/source/drivers/postgresql/pq_connection.cxx b/connectivity/source/drivers/postgresql/pq_connection.cxx
index 35f5d3366cb6..41f04bffffdd 100644
--- a/connectivity/source/drivers/postgresql/pq_connection.cxx
+++ b/connectivity/source/drivers/postgresql/pq_connection.cxx
@@ -104,7 +104,7 @@ public:
{
}
- virtual ~ClosableReference()
+ virtual ~ClosableReference() override
{
}
diff --git a/connectivity/source/drivers/postgresql/pq_connection.hxx b/connectivity/source/drivers/postgresql/pq_connection.hxx
index d2cdd09a1c40..4459a24c0d87 100644
--- a/connectivity/source/drivers/postgresql/pq_connection.hxx
+++ b/connectivity/source/drivers/postgresql/pq_connection.hxx
@@ -175,7 +175,7 @@ public:
const rtl::Reference< RefCountedMutex > &refMutex,
const css::uno::Reference< css::uno::XComponentContext > & ctx );
- virtual ~Connection( );
+ virtual ~Connection( ) override;
public: // XCloseable
virtual void SAL_CALL close()
diff --git a/connectivity/source/drivers/postgresql/pq_preparedstatement.hxx b/connectivity/source/drivers/postgresql/pq_preparedstatement.hxx
index 7ce5ae284de5..408d14543011 100644
--- a/connectivity/source/drivers/postgresql/pq_preparedstatement.hxx
+++ b/connectivity/source/drivers/postgresql/pq_preparedstatement.hxx
@@ -101,7 +101,7 @@ public:
struct ConnectionSettings *pSettings,
const OString &stmt );
- virtual ~PreparedStatement();
+ virtual ~PreparedStatement() override;
public: // XInterface
virtual void SAL_CALL acquire() throw() override { PreparedStatement_BASE::acquire(); }
virtual void SAL_CALL release() throw() override { PreparedStatement_BASE::release(); }
diff --git a/connectivity/source/drivers/postgresql/pq_resultset.hxx b/connectivity/source/drivers/postgresql/pq_resultset.hxx
index 58a5f4de1d94..5ccf50ed0902 100644
--- a/connectivity/source/drivers/postgresql/pq_resultset.hxx
+++ b/connectivity/source/drivers/postgresql/pq_resultset.hxx
@@ -76,7 +76,7 @@ public:
PGresult *result,
const OUString &schema,
const OUString &table );
- virtual ~ResultSet();
+ virtual ~ResultSet() override;
public: // XCloseable
virtual void SAL_CALL close( )
diff --git a/connectivity/source/drivers/postgresql/pq_sequenceresultset.hxx b/connectivity/source/drivers/postgresql/pq_sequenceresultset.hxx
index 9c169324d713..1f43cfa526d4 100644
--- a/connectivity/source/drivers/postgresql/pq_sequenceresultset.hxx
+++ b/connectivity/source/drivers/postgresql/pq_sequenceresultset.hxx
@@ -77,7 +77,7 @@ public:
const std::vector< std::vector< css::uno::Any > > &data,
const css::uno::Reference< css::script::XTypeConverter > &tc,
const ColumnMetaDataVector *pVec = nullptr);
- virtual ~SequenceResultSet();
+ virtual ~SequenceResultSet() override;
public: // XCloseable
virtual void SAL_CALL close( )
diff --git a/connectivity/source/drivers/postgresql/pq_statement.hxx b/connectivity/source/drivers/postgresql/pq_statement.hxx
index e73b7a8b02fe..981fcafd64fe 100644
--- a/connectivity/source/drivers/postgresql/pq_statement.hxx
+++ b/connectivity/source/drivers/postgresql/pq_statement.hxx
@@ -94,7 +94,7 @@ public:
const css::uno::Reference< css::sdbc::XConnection> & con,
struct ConnectionSettings *pSettings );
- virtual ~Statement();
+ virtual ~Statement() override;
public: // XInterface
virtual void SAL_CALL acquire() throw() override { Statement_BASE::acquire(); }
virtual void SAL_CALL release() throw() override { Statement_BASE::release(); }
diff --git a/connectivity/source/drivers/postgresql/pq_xcolumns.hxx b/connectivity/source/drivers/postgresql/pq_xcolumns.hxx
index 9e5911d0fd2d..d7d8e92d3ffe 100644
--- a/connectivity/source/drivers/postgresql/pq_xcolumns.hxx
+++ b/connectivity/source/drivers/postgresql/pq_xcolumns.hxx
@@ -79,7 +79,7 @@ protected:
const OUString &tableName);
- virtual ~Columns();
+ virtual ~Columns() override;
public: // XAppend
virtual void SAL_CALL appendByDescriptor(
diff --git a/connectivity/source/drivers/postgresql/pq_xindexcolumns.hxx b/connectivity/source/drivers/postgresql/pq_xindexcolumns.hxx
index 55c5833ad8af..7134316a05e4 100644
--- a/connectivity/source/drivers/postgresql/pq_xindexcolumns.hxx
+++ b/connectivity/source/drivers/postgresql/pq_xindexcolumns.hxx
@@ -69,7 +69,7 @@ protected:
const OUString &indexName,
const css::uno::Sequence< OUString > &columns );
- virtual ~IndexColumns();
+ virtual ~IndexColumns() override;
public: // XAppend
virtual void SAL_CALL appendByDescriptor(
diff --git a/connectivity/source/drivers/postgresql/pq_xindexes.hxx b/connectivity/source/drivers/postgresql/pq_xindexes.hxx
index 2b49bca04231..34d15b53df58 100644
--- a/connectivity/source/drivers/postgresql/pq_xindexes.hxx
+++ b/connectivity/source/drivers/postgresql/pq_xindexes.hxx
@@ -62,7 +62,7 @@ protected:
const OUString &schemaName,
const OUString &tableName);
- virtual ~Indexes();
+ virtual ~Indexes() override;
public: // XAppend
virtual void SAL_CALL appendByDescriptor(
diff --git a/connectivity/source/drivers/postgresql/pq_xkeycolumns.hxx b/connectivity/source/drivers/postgresql/pq_xkeycolumns.hxx
index dbdfa600e24d..6d60413ab8ca 100644
--- a/connectivity/source/drivers/postgresql/pq_xkeycolumns.hxx
+++ b/connectivity/source/drivers/postgresql/pq_xkeycolumns.hxx
@@ -69,7 +69,7 @@ protected:
const css::uno::Sequence< OUString > &keyColumns,
const css::uno::Sequence< OUString > &foreignColumnNames);
- virtual ~KeyColumns();
+ virtual ~KeyColumns() override;
public: // XAppend
virtual void SAL_CALL appendByDescriptor(
diff --git a/connectivity/source/drivers/postgresql/pq_xkeys.hxx b/connectivity/source/drivers/postgresql/pq_xkeys.hxx
index d13c9e448d87..df0f21b7b619 100644
--- a/connectivity/source/drivers/postgresql/pq_xkeys.hxx
+++ b/connectivity/source/drivers/postgresql/pq_xkeys.hxx
@@ -62,7 +62,7 @@ protected:
const OUString &schemaName,
const OUString &tableName);
- virtual ~Keys();
+ virtual ~Keys() override;
public: // XAppend
virtual void SAL_CALL appendByDescriptor(
diff --git a/connectivity/source/drivers/postgresql/pq_xtables.hxx b/connectivity/source/drivers/postgresql/pq_xtables.hxx
index c2e45f0fef43..9eb675e3f933 100644
--- a/connectivity/source/drivers/postgresql/pq_xtables.hxx
+++ b/connectivity/source/drivers/postgresql/pq_xtables.hxx
@@ -58,7 +58,7 @@ protected:
const css::uno::Reference< css::sdbc::XConnection > & origin,
ConnectionSettings *pSettings );
- virtual ~Tables();
+ virtual ~Tables() override;
public: // XAppend
virtual void SAL_CALL appendByDescriptor(
diff --git a/connectivity/source/drivers/postgresql/pq_xusers.hxx b/connectivity/source/drivers/postgresql/pq_xusers.hxx
index 0ab9ef83ed17..6ecddfe302ff 100644
--- a/connectivity/source/drivers/postgresql/pq_xusers.hxx
+++ b/connectivity/source/drivers/postgresql/pq_xusers.hxx
@@ -57,7 +57,7 @@ protected:
const css::uno::Reference< css::sdbc::XConnection > & origin,
ConnectionSettings *pSettings );
- virtual ~Users();
+ virtual ~Users() override;
public: // XAppend
virtual void SAL_CALL appendByDescriptor(
diff --git a/connectivity/source/drivers/postgresql/pq_xviews.hxx b/connectivity/source/drivers/postgresql/pq_xviews.hxx
index d4263203e802..1debff30d494 100644
--- a/connectivity/source/drivers/postgresql/pq_xviews.hxx
+++ b/connectivity/source/drivers/postgresql/pq_xviews.hxx
@@ -58,7 +58,7 @@ protected:
const css::uno::Reference< css::sdbc::XConnection > & origin,
ConnectionSettings *pSettings);
- virtual ~Views();
+ virtual ~Views() override;
public: // XAppend
virtual void SAL_CALL appendByDescriptor(