Kaydet (Commit) 1d0d7127 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Take new FormulaTokenArrayPlainIterator into use in one more place

Change-Id: Id7f22d2d00e7c3ec79ec2dd886dce72be8692ac5
üst 0505d3b2
......@@ -1916,7 +1916,8 @@ void XclExpSupbookBuffer::StoreCellRange( sal_uInt16 nFileId, const OUString& rT
if (!pArray.get())
return;
for (FormulaToken* p = pArray->First(); p; p = pArray->Next())
FormulaTokenArrayPlainIterator aIter(*pArray);
for (FormulaToken* p = aIter.First(); p; p = aIter.Next())
{
if (p->GetType() == svMatrix)
aMatrixList.push_back(p);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment