summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2015-03-31 16:09:14 +0200
committerEike Rathke <erack@redhat.com>2015-03-31 17:51:03 +0200
commitf3989e4d3d87f07a484d7c404bc2bfc678faa7f0 (patch)
tree14427c94a7bcef69aecee22c7e405006aacdf1ea
parent96f5b780f083ff97af5f570836267565d963e742 (diff)
use error value instead of string in array/matrix, tdf#42481 related
Change-Id: Ib97509609bd3e6629e3efd0c633535564f1c64d6
-rw-r--r--sc/source/core/tool/interpr1.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/interpr1.cxx b/sc/source/core/tool/interpr1.cxx
index 260ff93650cf..a4b9fd0a612b 100644
--- a/sc/source/core/tool/interpr1.cxx
+++ b/sc/source/core/tool/interpr1.cxx
@@ -1002,7 +1002,7 @@ sc::RangeMatrix ScInterpreter::CompareMat( ScQueryOp eOp, sc::CompareOptions* pO
sc::CompareFunc(aComp.maCells[0], aComp.maCells[1], aComp.mbIgnoreCase, pOptions), j, k);
}
else
- aRes.mpMat->PutString(mrStrPool.intern(ScGlobal::GetRscString(STR_NO_VALUE)), j, k);
+ aRes.mpMat->PutError( errNoValue, j, k);
}
}