diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2011-09-29 13:11:26 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2011-09-29 13:22:57 +0200 |
commit | 8de6948e4f67b65d0320f7ec08ab9ad8328b2411 (patch) | |
tree | a0727d9ed0cfb35861b3074950b1e285176f5c4d /sc/inc | |
parent | 3482b33aeee0e2f87ab33da7f543d9aff897e66b (diff) |
fix trunk gcc compile errors
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/compressedarray.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/compressedarray.hxx b/sc/inc/compressedarray.hxx index c07eb43c0658..3d1ea6d5e1ff 100644 --- a/sc/inc/compressedarray.hxx +++ b/sc/inc/compressedarray.hxx @@ -397,18 +397,18 @@ public: template< typename A, typename D > void ScBitMaskCompressedArray<A,D>::AndValue( A nPos, const D& rValueToAnd ) { - const D& rValue = GetValue( nPos); + const D& rValue = this->GetValue( nPos); if ((rValue & rValueToAnd) != rValue) - SetValue( nPos, rValue & rValueToAnd); + this->SetValue( nPos, rValue & rValueToAnd); } template< typename A, typename D > void ScBitMaskCompressedArray<A,D>::OrValue( A nPos, const D& rValueToOr ) { - const D& rValue = GetValue( nPos); + const D& rValue = this->GetValue( nPos); if ((rValue | rValueToOr) != rValue) - SetValue( nPos, rValue | rValueToOr); + this->SetValue( nPos, rValue | rValueToOr); } |