summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2016-09-02 20:44:27 +0300
committerTor Lillqvist <tml@collabora.com>2016-09-02 18:19:33 +0000
commit326da3886e6f700ad1fb269df201fae9fa01d5df (patch)
tree1ab1eaa93756fb3ef21675fc60249841016334d9 /sc
parentc261d785f3b39f4d96dc20a52ee5f2cb498cc71c (diff)
tdf#101866: Get rid of two more erroneous upper-casings of strings
Follow-up to f948dce856d51704e1962553198015dbebb6e527. Change-Id: I46c5a96a076fa6eec952e31201bb3563464cf602 Reviewed-on: https://gerrit.libreoffice.org/28626 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/column2.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx
index 9faf724db50c..11e93965e605 100644
--- a/sc/source/core/data/column2.cxx
+++ b/sc/source/core/data/column2.cxx
@@ -2388,7 +2388,7 @@ bool appendToBlock(
if (aRes.meType == sc::FormulaResultValue::String)
{
rCxt.ensureStrArray(rColArray, nArrayLen);
- (*rColArray.mpStrArray)[nPos] = aRes.maString.getDataIgnoreCase();
+ (*rColArray.mpStrArray)[nPos] = aRes.maString.getData();
}
else
{
@@ -2526,7 +2526,7 @@ copyFirstFormulaBlock(
pStrArray = rCxt.m_StrArrays.back().get();
}
- (*pStrArray)[nPos] = aRes.maString.getDataIgnoreCase();
+ (*pStrArray)[nPos] = aRes.maString.getData();
}
}