From 6ef3027ff9a5ee48e9fe2b8817eeabe444d6ec05 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sun, 22 Dec 2019 19:45:05 +0200 Subject: loplugin:finalclasses in UnoControls..writerperfect Change-Id: I751c9a45503326dfdaeb471967a688a95d4fa090 Reviewed-on: https://gerrit.libreoffice.org/85711 Tested-by: Jenkins Reviewed-by: Noel Grandin --- unoxml/inc/mouseevent.hxx | 2 +- unoxml/inc/mutationevent.hxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'unoxml') diff --git a/unoxml/inc/mouseevent.hxx b/unoxml/inc/mouseevent.hxx index 3f6788e89f13..abbf1ff2c82e 100644 --- a/unoxml/inc/mouseevent.hxx +++ b/unoxml/inc/mouseevent.hxx @@ -32,7 +32,7 @@ namespace DOM { namespace events { typedef ::cppu::ImplInheritanceHelper< CUIEvent, css::xml::dom::events::XMouseEvent > CMouseEvent_Base; -class CMouseEvent +class CMouseEvent final : public CMouseEvent_Base { sal_Int32 m_screenX; diff --git a/unoxml/inc/mutationevent.hxx b/unoxml/inc/mutationevent.hxx index 5499b5a93633..68145b270b3e 100644 --- a/unoxml/inc/mutationevent.hxx +++ b/unoxml/inc/mutationevent.hxx @@ -37,7 +37,7 @@ namespace DOM { namespace events { typedef ::cppu::ImplInheritanceHelper< CEvent, css::xml::dom::events::XMutationEvent > CMutationEvent_Base; -class CMutationEvent +class CMutationEvent final : public CMutationEvent_Base { css::uno::Reference< css::xml::dom::XNode > m_relatedNode; -- cgit