summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/ut.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-30 10:29:19 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-10-01 10:43:24 +0000
commit58aea3f36c14414f95668e229a7350598f6c53a8 (patch)
tree70c115dffd44576313cefd49e4164d293895e4bd /lotuswordpro/source/filter/ut.hxx
parentfollowup fix (diff)
downloadcore-58aea3f36c14414f95668e229a7350598f6c53a8.tar.gz
core-58aea3f36c14414f95668e229a7350598f6c53a8.zip
loplugin:unusedmethods
- improvements to the plugin to find more method calls - improvements to python script to remove more false+ - fix the FORCE_COMPILE_ALL build flag to include code in the $WORKDIR Change-Id: I4d6015dcb9b9d60c26f0bcee8abad807177a7836 Reviewed-on: https://gerrit.libreoffice.org/19064 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'lotuswordpro/source/filter/ut.hxx')
-rw-r--r--lotuswordpro/source/filter/ut.hxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/lotuswordpro/source/filter/ut.hxx b/lotuswordpro/source/filter/ut.hxx
index 478336075648..ecded7bb2e73 100644
--- a/lotuswordpro/source/filter/ut.hxx
+++ b/lotuswordpro/source/filter/ut.hxx
@@ -81,19 +81,9 @@ inline UtWord UtGetIntelWord(UtByte * pData)
inline UtDWord UtGetIntelDWord(UtByte * pData)
{ return pData[0] | pData[1] << 8 | pData[2] << 16 | pData[3] << 24; }
-inline void UtPutIntelWord(UtByte * pData, UtWord Val)
-{ pData[0] = Val; pData[1] = Val >> 8; }
-
-inline void UtPutIntelDWord(UtByte * pData, UtDWord Val)
-{ pData[0] = Val; pData[1] = Val >> 8; pData[2] = Val >> 16; pData[3] = Val >> 24; }
-
inline UtByte UtGetIntelByte(UtByte * pData)
{ return * pData; }
-inline void UtPutIntelByte(UtByte * pData, UtByte Val)
-
-{ * pData = Val; }
-
}
#endif