summaryrefslogtreecommitdiff
path: root/sc/inc/textuno.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-10-31 16:16:24 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-11-01 08:53:23 +0100
commita71edbd296c640fb62b99d057ee0142e2a84a8a9 (patch)
tree084381ec6bf7a9e058593c9f80cfa1b96150dcb0 /sc/inc/textuno.hxx
parent8629be30930cc6d72a2bd3d95423d7273deb44f8 (diff)
loplugin:finalclasses in sc/inc
Change-Id: I6a08a86262deae4bed3a05f77d3041a568f23595 Reviewed-on: https://gerrit.libreoffice.org/81853 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc/textuno.hxx')
-rw-r--r--sc/inc/textuno.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/inc/textuno.hxx b/sc/inc/textuno.hxx
index b76cdf6a94fc..44445c8d7527 100644
--- a/sc/inc/textuno.hxx
+++ b/sc/inc/textuno.hxx
@@ -53,7 +53,7 @@ enum class ScHeaderFooterPart{ LEFT, CENTER, RIGHT };
// ScHeaderFooterContentObj is a dumb container which must be re-written into
// the page template using setPropertyValue
-class ScHeaderFooterContentObj : public cppu::WeakImplHelper<
+class ScHeaderFooterContentObj final : public cppu::WeakImplHelper<
css::sheet::XHeaderFooterContent,
css::lang::XUnoTunnel,
css::lang::XServiceInfo >
@@ -213,7 +213,7 @@ public:
//! uno3: SvxUnoTextCursor is not derived from XUnoTunnel, but should be (?)
-class ScCellTextCursor : public SvxUnoTextCursor
+class ScCellTextCursor final : public SvxUnoTextCursor
{
rtl::Reference<ScCellObj> mxTextObj;
@@ -240,7 +240,7 @@ public:
UNO3_GETIMPLEMENTATION_DECL(ScCellTextCursor)
};
-class ScHeaderFooterTextCursor : public SvxUnoTextCursor
+class ScHeaderFooterTextCursor final : public SvxUnoTextCursor
{
private:
rtl::Reference<ScHeaderFooterTextObj> rTextObj;
@@ -266,7 +266,7 @@ public:
UNO3_GETIMPLEMENTATION_DECL(ScHeaderFooterTextCursor)
};
-class ScDrawTextCursor : public SvxUnoTextCursor
+class ScDrawTextCursor final : public SvxUnoTextCursor
{
private:
css::uno::Reference< css::text::XText > xParentText;
@@ -312,7 +312,7 @@ public:
ScEditEngineDefaulter* GetEditEngine() const { return pEditEngine.get(); }
};
-class ScEditEngineTextObj : public ScSimpleEditSourceHelper, public SvxUnoText
+class ScEditEngineTextObj final : public ScSimpleEditSourceHelper, public SvxUnoText
{
public:
ScEditEngineTextObj();
@@ -358,7 +358,7 @@ public:
void SetDoUpdate(bool bValue) { bDoUpdate = bValue; }
};
-class ScCellTextObj : public ScCellTextData, public SvxUnoText
+class ScCellTextObj final : public ScCellTextData, public SvxUnoText
{
public:
ScCellTextObj(ScDocShell* pDocSh, const ScAddress& rP);