diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-01-07 15:25:44 +0100 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-01-07 21:04:34 +0100 |
commit | 4931c9521d739e813a3cdea04e23e79cbff802cb (patch) | |
tree | c2b2609339db359e6701c8e9822e138d5554e7ee /sw/source | |
parent | f1d80220226919b55e4378fdb1dee3d511c094df (diff) |
nBlockGrowSize can be static
Change-Id: Ifafa52019732b6c1d9681ea855c50bd88b59dbf5
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/core/bastyp/bparr.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/bastyp/bparr.cxx b/sw/source/core/bastyp/bparr.cxx index 53fb2f525e46..64ddf750235f 100644 --- a/sw/source/core/bastyp/bparr.cxx +++ b/sw/source/core/bastyp/bparr.cxx @@ -24,7 +24,7 @@ /** Resize block management by this constant. As a result there are approx. 20 * MAXENTRY == 20000 entries available */ -const sal_uInt16 nBlockGrowSize = 20; +static const sal_uInt16 nBlockGrowSize = 20; #if OSL_DEBUG_LEVEL > 2 #define CHECKIDX( p, n, i, c ) CheckIdx( p, n, i, c ); |