Kaydet (Commit) 33c387d2 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

better check for more formula token types, related fdo#74077

Change-Id: I1723b5640fe438e72d1bbe2946c3aac0ae244e81
üst 3d1a4d24
...@@ -3484,6 +3484,18 @@ ScFormulaCell::CompareState ScFormulaCell::CompareByTokenArray( ScFormulaCell& r ...@@ -3484,6 +3484,18 @@ ScFormulaCell::CompareState ScFormulaCell::CompareByTokenArray( ScFormulaCell& r
return NotEqual; return NotEqual;
} }
break; break;
case formula::svIndex:
{
if(pThisTok->GetIndex() != pOtherTok->GetIndex())
return NotEqual;
}
break;
case formula::svByte:
{
if(pThisTok->GetByte() != pOtherTok->GetByte())
return NotEqual;
}
break;
default: default:
; ;
} }
......
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