diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-10-31 13:45:06 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-11-01 14:45:44 +0100 |
commit | 90c84aa5916c496de357dbf3956c51e0eb202dc4 (patch) | |
tree | 4ce024b02d8b29a2cf4dab27a9aad8e101c289f3 | |
parent | 3d33912707a621b04467eb56823e26b4b0db01ae (diff) |
WW8TabBandDesc::bCantSplit90 is unused
found by a new loplugin
Change-Id: I988e43760b203a57342d606caadc1f2517a657a4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158753
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r-- | sw/source/filter/ww8/ww8par.hxx | 1 | ||||
-rw-r--r-- | sw/source/filter/ww8/ww8par2.cxx | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/ww8par.hxx b/sw/source/filter/ww8/ww8par.hxx index 2c0bf9dd8e4f..cfd1cd6f2a85 100644 --- a/sw/source/filter/ww8/ww8par.hxx +++ b/sw/source/filter/ww8/ww8par.hxx @@ -1064,7 +1064,6 @@ struct WW8TabBandDesc bool bLEmptyCol; // SW: an additional empty column at the left bool bREmptyCol; // SW: same at the right bool bCantSplit; - bool bCantSplit90; WW8_TCell* pTCs; sal_uInt8 nOverrideSpacing[MAX_COL + 1]; short nOverrideValues[MAX_COL + 1][4]; diff --git a/sw/source/filter/ww8/ww8par2.cxx b/sw/source/filter/ww8/ww8par2.cxx index 375371192ef6..faa9d9e45d29 100644 --- a/sw/source/filter/ww8/ww8par2.cxx +++ b/sw/source/filter/ww8/ww8par2.cxx @@ -79,7 +79,7 @@ WW8TabBandDesc::WW8TabBandDesc(): pNextBand(nullptr), nGapHalf(0), mnDefaultLeft(0), mnDefaultTop(0), mnDefaultRight(0), mnDefaultBottom(0), mbHasSpacing(false), nLineHeight(0), nRows(0), nCenter{}, nWidth{}, nWwCols(0), nSwCols(0), bLEmptyCol(false), bREmptyCol(false), bCantSplit(false), - bCantSplit90(false), pTCs(nullptr), nOverrideSpacing{}, nOverrideValues{}, pSHDs(nullptr), + pTCs(nullptr), nOverrideSpacing{}, nOverrideValues{}, pSHDs(nullptr), pNewSHDs(nullptr), bExist{}, nTransCell{} { for (sal_uInt16 & rn : maDirections) |