Kaydet (Commit) 0505d3b2 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Take new FormulaTokenArrayPlainIterator into use in one more place

Change-Id: I8af9204e93608d7f63a502ddcc0b05e6f191343f
üst 46834576
......@@ -2126,7 +2126,8 @@ void XclExpFmlaCompImpl::ProcessExternalName( const XclExpScToken& rTokData )
// store external cell contents in CRN records
if( mxData->mpScBasePos )
{
for( FormulaToken* pScToken = xArray->First(); pScToken; pScToken = xArray->Next() )
FormulaTokenArrayPlainIterator aIter(*xArray);
for( FormulaToken* pScToken = aIter.First(); pScToken; pScToken = aIter.Next() )
{
if( pScToken->IsExternalRef() )
{
......
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