diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-10 08:47:37 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-09-10 08:47:37 +0200 |
commit | 9e2628503db9641b722e3dd373845fd9b435a938 (patch) | |
tree | a1c49fe7483dd864c4c678e7f8dcd6437e8b2a3f /include/oox | |
parent | 40bc832ff31ae37784fd53c2b37689074f4cbeac (diff) |
loplugin:staticmethods
Change-Id: Id9313d02fe6036ff8d8cf8142269ed9b4042051d
Diffstat (limited to 'include/oox')
-rw-r--r-- | include/oox/ole/vbaexport.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/oox/ole/vbaexport.hxx b/include/oox/ole/vbaexport.hxx index 69d34b1112a8..7b5b91660044 100644 --- a/include/oox/ole/vbaexport.hxx +++ b/include/oox/ole/vbaexport.hxx @@ -74,17 +74,17 @@ private: // DecompressedEnd according to the spec sal_uInt64 mnDecompressedEnd; - void PackCompressedChunkSize(size_t nSize, sal_uInt16& rHeader); + static void PackCompressedChunkSize(size_t nSize, sal_uInt16& rHeader); - void PackCompressedChunkFlag(bool bCompressed, sal_uInt16& rHeader); + static void PackCompressedChunkFlag(bool bCompressed, sal_uInt16& rHeader); - void PackCompressedChunkSignature(sal_uInt16& rHeader); + static void PackCompressedChunkSignature(sal_uInt16& rHeader); void compressTokenSequence(); void compressToken(size_t index, sal_uInt8& nFlagByte); - void SetFlagBit(size_t index, bool bVal, sal_uInt8& rFlag); + static void SetFlagBit(size_t index, bool bVal, sal_uInt8& rFlag); sal_uInt16 CopyToken(size_t nLength, size_t nOffset); |