summaryrefslogtreecommitdiffstats
path: root/sc/inc
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2017-10-15 20:30:55 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-10-17 09:05:09 +0200
commit79fe112cdd9d59982739c04026297055e4bd8ab0 (patch)
tree5128e447c93d809b0d145e844f024c6c7d26e4f7 /sc/inc
parentMove sdext/source/pdfimport/tree include files to common include directory (diff)
downloadcore-79fe112cdd9d59982739c04026297055e4bd8ab0.tar.gz
core-79fe112cdd9d59982739c04026297055e4bd8ab0.zip
Simplify ScCompressedArray constructor
nobody is setting a custom delta Change-Id: I5dd9ac691fb226697eb8cb2b6b0b673552a4f049 Reviewed-on: https://gerrit.libreoffice.org/43437 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/compressedarray.hxx11
1 files changed, 3 insertions, 8 deletions
diff --git a/sc/inc/compressedarray.hxx b/sc/inc/compressedarray.hxx
index 86063049b774..93cbac83172d 100644
--- a/sc/inc/compressedarray.hxx
+++ b/sc/inc/compressedarray.hxx
@@ -25,8 +25,6 @@
#include "scdllapi.h"
-const size_t nScCompressedArrayDelta = 4;
-
/** Compressed array of row (or column) entries, e.g. heights, flags, ...
The array stores ranges of values such that equal consecutive values occupy only
@@ -70,8 +68,7 @@ public:
/** Construct with nMaxAccess=MAXROW, for example. */
ScCompressedArray( A nMaxAccess,
- const D& rValue,
- size_t nDelta = nScCompressedArrayDelta );
+ const D& rValue );
/** Construct from a plain array of D */
ScCompressedArray( A nMaxAccess,
const D* pDataArray, size_t nDataCount );
@@ -119,7 +116,6 @@ public:
protected:
size_t nCount;
size_t nLimit;
- size_t nDelta;
DataEntry* pData;
A nMaxAccess;
};
@@ -176,9 +172,8 @@ template< typename A, typename D > class ScBitMaskCompressedArray : public ScCom
{
public:
ScBitMaskCompressedArray( A nMaxAccessP,
- const D& rValue,
- size_t nDeltaP = nScCompressedArrayDelta )
- : ScCompressedArray<A,D>( nMaxAccessP, rValue, nDeltaP)
+ const D& rValue )
+ : ScCompressedArray<A,D>( nMaxAccessP, rValue )
{}
ScBitMaskCompressedArray( A nMaxAccessP,
const D* pDataArray, size_t nDataCount )