summaryrefslogtreecommitdiff
path: root/include/connectivity/ParameterCont.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-10-29 08:17:21 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-10-29 08:35:36 +0100
commit01b1442e2b866c975565cb6d585ae394e9b3cb9f (patch)
tree8ac64839b74ed1f9749f9ae2cf654e6a4583db49 /include/connectivity/ParameterCont.hxx
parentcaa4c416675f9d5f6e5006b551f8534088c5bdf1 (diff)
loplugin:finalclasses in connectivity
Change-Id: I8f85331338247d4b144c5d5487c2fb59c5237dff Reviewed-on: https://gerrit.libreoffice.org/81637 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/connectivity/ParameterCont.hxx')
-rw-r--r--include/connectivity/ParameterCont.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/connectivity/ParameterCont.hxx b/include/connectivity/ParameterCont.hxx
index 10ca6da0f214..a17fa6a75ade 100644
--- a/include/connectivity/ParameterCont.hxx
+++ b/include/connectivity/ParameterCont.hxx
@@ -28,7 +28,7 @@ namespace dbtools
//= OParameterContinuation
- class OOO_DLLPUBLIC_DBTOOLS OParameterContinuation : public comphelper::OInteraction< css::sdb::XInteractionSupplyParameters >
+ class OOO_DLLPUBLIC_DBTOOLS OParameterContinuation final : public comphelper::OInteraction< css::sdb::XInteractionSupplyParameters >
{
css::uno::Sequence< css::beans::PropertyValue > m_aValues;
@@ -40,9 +40,8 @@ namespace dbtools
// XInteractionSupplyParameters
virtual void SAL_CALL setParameters( const css::uno::Sequence< css::beans::PropertyValue >& _rValues ) override;
- protected:
- virtual ~OParameterContinuation() override { }
private:
+ virtual ~OParameterContinuation() override { }
OParameterContinuation(const OParameterContinuation&) = delete;
void operator =(const OParameterContinuation&) = delete;
};