summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/mork
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/mork')
-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
8 files changed, 9 insertions, 9 deletions
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);