diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-14 10:39:55 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-14 09:48:46 +0000 |
commit | fdf56e4b50b396884f67b841b82bca2ae8def848 (patch) | |
tree | 7b13a4c6370cb97ab04a327a6839302e010cac88 /sw | |
parent | 2cee32bd4f90cc70a44755f9a8e4a6e9c6c6f2d9 (diff) |
loplugin:unusedmethods
Checked a couple of them:
StandardCheckVisisbilityRedirector is unused since
commit b1f8cf37828d5f37527e54774aa4935610aa6325
Author: Noel Grandin <noel.grandin@collabora.co.uk>
Date: Wed Nov 2 10:57:21 2016 +0200
loplugin:singlevalfields
SfxQueryStatus is unused since
commit 64a708cba9b954afe3331f63c58218eb53b3d0ce
Author: Caolán McNamara <caolanm@redhat.com>
Date: Sat Nov 5 20:28:27 2016 +0000
Revert "Reverts a commit series that cripple windows ci."
Change-Id: If1c9fe26c3ebc573d8c53c8f060b05c27f2711e5
Reviewed-on: https://gerrit.libreoffice.org/30840
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/inc/cellatr.hxx | 2 | ||||
-rw-r--r-- | sw/source/filter/ww8/ww8struc.hxx | 11 |
2 files changed, 0 insertions, 13 deletions
diff --git a/sw/inc/cellatr.hxx b/sw/inc/cellatr.hxx index f07345b93b43..501744b047ad 100644 --- a/sw/inc/cellatr.hxx +++ b/sw/inc/cellatr.hxx @@ -45,8 +45,6 @@ public: bAuto = rAttr.bAuto; return *this; } - - bool GetAutoFlag() const { return bAuto; } }; class SwTableBoxFormula : public SfxPoolItem, public SwTableFormula diff --git a/sw/source/filter/ww8/ww8struc.hxx b/sw/source/filter/ww8/ww8struc.hxx index 254591ee08e4..097391dde1e2 100644 --- a/sw/source/filter/ww8/ww8struc.hxx +++ b/sw/source/filter/ww8/ww8struc.hxx @@ -253,17 +253,6 @@ struct WW8_BRCVer6 // BoRder Code (WW6 version) { return ((aBits1[0] & 0xc0) >> 6) | ((aBits1[1] & 0x07) << 2); } sal_uInt8 dxpSpace() const { return aBits1[1] >> 3; } - - WW8_BRCVer6(sal_uInt8 _dxpLineWidth, sal_uInt8 _brcType, sal_uInt8 _ico, - sal_uInt8 _dxpSpace, bool _fShadow) - { - assert(_dxpSpace < 0x20); - assert(_brcType <= 3); - assert(_ico < 32); - aBits1[0] = _dxpLineWidth | (_brcType << 3) | ((sal_uInt8)_fShadow << 5) - | ((_ico << 6) & 0xc0); - aBits1[1] = (_ico >> 2) | (_dxpSpace << 3); - } }; struct WW8_BRC // BoRder Code (WW8 version) |