summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-05-16 14:05:56 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-05-18 09:17:43 +0200
commit4c05834a363535804d2cf5892704e19a5bb4f966 (patch)
tree43226f521a491e833bdd3f18b1655e945018ba64 /tools
parent60861faa8653afebb504cfbcaeed633d2373a27d (diff)
loplugin:unusedmethods
Change-Id: I1c50d176e793397a1f9625f797a3750cf191a61c Reviewed-on: https://gerrit.libreoffice.org/37679 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'tools')
-rw-r--r--tools/source/rc/resmgr.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/tools/source/rc/resmgr.cxx b/tools/source/rc/resmgr.cxx
index 422c7882d9a1..09c1fbe2a954 100644
--- a/tools/source/rc/resmgr.cxx
+++ b/tools/source/rc/resmgr.cxx
@@ -1067,18 +1067,6 @@ sal_Int32 ResMgr::GetLong( void const * pLong )
(*(static_cast<const sal_uInt8*>(pLong) + 3) << 0) );
}
-sal_uInt64 ResMgr::GetUInt64( void const * pDatum )
-{
- return ((sal_uInt64(*(static_cast<const sal_uInt8*>(pDatum) + 0)) << 56) |
- (sal_uInt64(*(static_cast<const sal_uInt8*>(pDatum) + 1)) << 48) |
- (sal_uInt64(*(static_cast<const sal_uInt8*>(pDatum) + 2)) << 40) |
- (sal_uInt64(*(static_cast<const sal_uInt8*>(pDatum) + 3)) << 32) |
- (sal_uInt64(*(static_cast<const sal_uInt8*>(pDatum) + 4)) << 24) |
- (sal_uInt64(*(static_cast<const sal_uInt8*>(pDatum) + 5)) << 16) |
- (sal_uInt64(*(static_cast<const sal_uInt8*>(pDatum) + 6)) << 8) |
- (sal_uInt64(*(static_cast<const sal_uInt8*>(pDatum) + 7)) << 0) );
-}
-
sal_uInt32 ResMgr::GetStringWithoutHook( OUString& rStr, const sal_uInt8* pStr )
{
sal_uInt32 nLen=0;