summaryrefslogtreecommitdiff
path: root/include/ucbhelper/interactionrequest.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-10-30 15:00:30 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-10-31 07:02:41 +0100
commit4b795d15cd5b6feca73712b9ead9b4eee744dc2f (patch)
tree66a02c0abbd75d5f022b7a247092d25a0e28aff7 /include/ucbhelper/interactionrequest.hxx
parentab35d2ded153b0129fed16f9a7e882c8600933e6 (diff)
loplugin:finalclasses in ucbhelper
Change-Id: I52140333b274952d71afa13ba2d8edfcdf2b1425 Reviewed-on: https://gerrit.libreoffice.org/81767 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/ucbhelper/interactionrequest.hxx')
-rw-r--r--include/ucbhelper/interactionrequest.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/ucbhelper/interactionrequest.hxx b/include/ucbhelper/interactionrequest.hxx
index 137f75434093..e7f56c7ffcf6 100644
--- a/include/ucbhelper/interactionrequest.hxx
+++ b/include/ucbhelper/interactionrequest.hxx
@@ -155,7 +155,7 @@ public:
* along with an interaction request to indicate the possibility to abort
* the operation that caused the request.
*/
-class UCBHELPER_DLLPUBLIC InteractionAbort : public InteractionContinuation,
+class UCBHELPER_DLLPUBLIC InteractionAbort final : public InteractionContinuation,
public css::lang::XTypeProvider,
public css::task::XInteractionAbort
{
@@ -188,7 +188,7 @@ public:
* along with an interaction request to indicate the possibility to retry
* the operation that caused the request.
*/
-class UCBHELPER_DLLPUBLIC InteractionRetry : public InteractionContinuation,
+class UCBHELPER_DLLPUBLIC InteractionRetry final : public InteractionContinuation,
public css::lang::XTypeProvider,
public css::task::XInteractionRetry
{
@@ -221,7 +221,7 @@ public:
* along with an interaction request to indicate the possibility to approve
* the request.
*/
-class UCBHELPER_DLLPUBLIC InteractionApprove : public InteractionContinuation,
+class UCBHELPER_DLLPUBLIC InteractionApprove final : public InteractionContinuation,
public css::lang::XTypeProvider,
public css::task::XInteractionApprove
{
@@ -254,7 +254,7 @@ public:
* along with an interaction request to indicate the possibility to disapprove
* the request.
*/
-class UCBHELPER_DLLPUBLIC InteractionDisapprove : public InteractionContinuation,
+class UCBHELPER_DLLPUBLIC InteractionDisapprove final : public InteractionContinuation,
public css::lang::XTypeProvider,
public css::task::XInteractionDisapprove
{
@@ -287,7 +287,7 @@ public:
* passed along with an authentication interaction request to enable the
* interaction handler to supply the missing authentication data.
*/
-class UCBHELPER_DLLPUBLIC InteractionSupplyAuthentication :
+class UCBHELPER_DLLPUBLIC InteractionSupplyAuthentication final :
public InteractionContinuation,
public css::lang::XTypeProvider,
public css::ucb::XInteractionSupplyAuthentication2
@@ -482,7 +482,7 @@ inline InteractionSupplyAuthentication::InteractionSupplyAuthentication(
* passed along with an interaction request to indicate the possibility to
* replace existing data.
*/
-class InteractionReplaceExistingData :
+class InteractionReplaceExistingData final :
public InteractionContinuation,
public css::lang::XTypeProvider,
public css::ucb::XInteractionReplaceExistingData
@@ -509,7 +509,7 @@ public:
virtual void SAL_CALL select() override;
};
-class UCBHELPER_DLLPUBLIC InteractionAuthFallback:
+class UCBHELPER_DLLPUBLIC InteractionAuthFallback final :
public InteractionContinuation,
public css::ucb::XInteractionAuthFallback
{