summaryrefslogtreecommitdiff
path: root/sw/source/filter/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-10-20 14:51:23 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-10-23 08:16:02 +0200
commitb17294826830e278d060c876cf4f94a9b4ec16cc (patch)
tree85a1139b0484f44ef8e8edd9af6e0c410e702442 /sw/source/filter/inc
parent2559a2a0567dbc392ceb34057c0dc5078bbb9474 (diff)
loplugin:finalclasses in sw
Change-Id: I3b1d689d5eb800a36466376bca735dd31fe4567c Reviewed-on: https://gerrit.libreoffice.org/43639 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/filter/inc')
-rw-r--r--sw/source/filter/inc/wrtswtbl.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sw/source/filter/inc/wrtswtbl.hxx b/sw/source/filter/inc/wrtswtbl.hxx
index 7ecb70ca3237..ee1cbd771537 100644
--- a/sw/source/filter/inc/wrtswtbl.hxx
+++ b/sw/source/filter/inc/wrtswtbl.hxx
@@ -93,7 +93,7 @@ public:
typedef std::vector<std::unique_ptr<SwWriteTableCell>> SwWriteTableCells;
-class SW_DLLPUBLIC SwWriteTableRow
+class SW_DLLPUBLIC SwWriteTableRow final
{
SwWriteTableCells m_Cells; ///< all cells of the rows
const SvxBrushItem *pBackground; // background
@@ -103,7 +103,6 @@ class SW_DLLPUBLIC SwWriteTableRow
SwWriteTableRow & operator= (const SwWriteTableRow &) = delete;
-protected:
// GCC >= 3.4 needs accessible T (const T&) to pass T as const T& argument.
SwWriteTableRow( const SwWriteTableRow & );