diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-04-29 17:30:23 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-04-30 13:10:43 -0400 |
commit | dfc3f290b5934326a8e042eb81c1b2c81ee0a1ec (patch) | |
tree | 9a136e82f806600ecb085467a4ea9fd8aceff781 /sc/source | |
parent | c45c6307d23d8ceae9d567d2f7286c161b9cb5a9 (diff) |
Let's not use VectorArray struct. There is no use for it.
Change-Id: Ic011143206c13fcbc1b3403bf5b7df46c6934899
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/core/data/formulacell.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/data/formulacell.cxx b/sc/source/core/data/formulacell.cxx index 5753e44ebd7a..ba039b6e7422 100644 --- a/sc/source/core/data/formulacell.cxx +++ b/sc/source/core/data/formulacell.cxx @@ -3063,8 +3063,8 @@ bool ScFormulaCell::InterpretFormulaGroup() case svSingleVectorRef: { const formula::SingleVectorRefToken* p2 = static_cast<const formula::SingleVectorRefToken*>(p); - const formula::VectorArray& rArray = p2->GetArray(); - aCode2.AddDouble(rArray.mpArray[i]); + const double* pArray = p2->GetArray(); + aCode2.AddDouble(pArray[i]); } break; case svDoubleVectorRef: |