Kaydet (Commit) 2a29c792 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Take new FormulaTokenArrayPlainIterator into use in one more file

Change-Id: I70988724367b0ee798ccfee35c94e280b1015b36
üst 7f2fbc92
......@@ -205,8 +205,8 @@ void ScFormulaReferenceHelper::ShowFormulaReference(const OUString& rStr)
pTabViewShell->DoneRefMode();
pTabViewShell->ClearHighlightRanges();
pScTokA->Reset();
const formula::FormulaToken* pToken = pScTokA->GetNextReference();
formula::FormulaTokenArrayPlainIterator aIter(*pScTokA);
const formula::FormulaToken* pToken = aIter.GetNextReference();
sal_uInt16 nIndex=0;
......@@ -232,7 +232,7 @@ void ScFormulaReferenceHelper::ShowFormulaReference(const OUString& rStr)
pTabViewShell->AddHighlightRange(aRange, aColName);
}
pToken = pScTokA->GetNextReference();
pToken = aIter.GetNextReference();
}
}
}
......
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