Kaydet (Commit) 757fd377 authored tarafından Noel Grandin's avatar Noel Grandin Kaydeden (comit) Noel Grandin

fix a TODO in XclImpExtName::MOper::MOper

where it was not mapping the XLS error code to CALC

Change-Id: Ia44d6a6793960b52f43a0983d231347ba193636c
Reviewed-on: https://gerrit.libreoffice.org/28839Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
üst 2cfcf128
......@@ -319,8 +319,8 @@ XclImpExtName::MOper::MOper(svl::SharedStringPool& rPool, XclImpStream& rStrm) :
case 0x10:
{
sal_uInt8 nErr = rStrm.ReaduInt8();
// TODO: Map the error code from xls to calc.
mxCached->PutError(nErr, nCol, nRow);
// Map the error code from xls to calc.
mxCached->PutError(XclTools::GetScErrorCode(nErr), nCol, nRow);
rStrm.Ignore(7);
}
break;
......
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