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 /rsc | |
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 'rsc')
-rw-r--r-- | rsc/inc/rsctools.hxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/rsc/inc/rsctools.hxx b/rsc/inc/rsctools.hxx index 8cfb5b983a67..cf26e05bee7a 100644 --- a/rsc/inc/rsctools.hxx +++ b/rsc/inc/rsctools.hxx @@ -90,15 +90,6 @@ public: { return GetPointer( 0 ); } - sal_uInt16 GetShort( sal_uInt32 nPos ) - { - sal_uInt16 nVal = 0; - char* pFrom = GetPointer(nPos); - char* pTo = reinterpret_cast<char*>(&nVal); - *pTo++ = *pFrom++; - *pTo++ = *pFrom++; - return bSwap ? OSL_SWAPWORD( nVal ) : nVal; - } sal_uInt32 GetLong( sal_uInt32 nPos ) { sal_uInt32 nVal = 0; |