summaryrefslogtreecommitdiff
path: root/sc/inc/compressedarray.hxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-02-27 10:54:07 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-02-27 10:54:07 +0000
commit4addbd2ac0fe8cbbcca11ad768443fa20274758c (patch)
tree292d0b4529404afc6aa8332a10fad2d105e1329f /sc/inc/compressedarray.hxx
parentf33dffa46152624744bdee37cbfe60c2ba178d09 (diff)
INTEGRATION: CWS calcwarnings (1.5.324); FILE MERGED
2006/12/06 13:34:12 nn 1.5.324.1: #i69284# warning-free: core, unxlngi6
Diffstat (limited to 'sc/inc/compressedarray.hxx')
-rw-r--r--sc/inc/compressedarray.hxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/sc/inc/compressedarray.hxx b/sc/inc/compressedarray.hxx
index d50317ca39b9..853d7cb94ff2 100644
--- a/sc/inc/compressedarray.hxx
+++ b/sc/inc/compressedarray.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: compressedarray.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 17:28:33 $
+ * last change: $Author: vg $ $Date: 2007-02-27 11:54:07 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -412,15 +412,15 @@ void ScCompressedArrayIterator<A,D>::Resync( A nPos )
template< typename A, typename D > class ScSummableCompressedArray : public ScCompressedArray<A,D>
{
public:
- ScSummableCompressedArray( A nMaxAccess,
+ ScSummableCompressedArray( A nMaxAccessP,
const D& rValue,
- size_t nDelta = nScCompressedArrayDelta )
- : ScCompressedArray<A,D>( nMaxAccess,
- rValue, nDelta)
+ size_t nDeltaP = nScCompressedArrayDelta )
+ : ScCompressedArray<A,D>( nMaxAccessP,
+ rValue, nDeltaP)
{}
- ScSummableCompressedArray( A nMaxAccess,
+ ScSummableCompressedArray( A nMaxAccessP,
const D* pDataArray, size_t nDataCount )
- : ScCompressedArray<A,D>( nMaxAccess,
+ : ScCompressedArray<A,D>( nMaxAccessP,
pDataArray, nDataCount)
{}
@@ -455,14 +455,14 @@ public:
template< typename A, typename D > class ScBitMaskCompressedArray : public ScCompressedArray<A,D>
{
public:
- ScBitMaskCompressedArray( A nMaxAccess,
+ ScBitMaskCompressedArray( A nMaxAccessP,
const D& rValue,
- size_t nDelta = nScCompressedArrayDelta )
- : ScCompressedArray<A,D>( nMaxAccess, rValue, nDelta)
+ size_t nDeltaP = nScCompressedArrayDelta )
+ : ScCompressedArray<A,D>( nMaxAccessP, rValue, nDeltaP)
{}
- ScBitMaskCompressedArray( A nMaxAccess,
+ ScBitMaskCompressedArray( A nMaxAccessP,
const D* pDataArray, size_t nDataCount )
- : ScCompressedArray<A,D>( nMaxAccess,
+ : ScCompressedArray<A,D>( nMaxAccessP,
pDataArray, nDataCount)
{}
void AndValue( A nPos, const D& rValueToAnd );