[Libreoffice-commits] core.git: sc/source
Tor Lillqvist
tml at collabora.com
Fri Sep 2 18:19:57 UTC 2016
sc/source/core/data/column2.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 326da3886e6f700ad1fb269df201fae9fa01d5df
Author: Tor Lillqvist <tml at collabora.com>
Date: Fri Sep 2 20:44:27 2016 +0300
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 at redhat.com>
Tested-by: Tor Lillqvist <tml at collabora.com>
diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx
index 9faf724..11e9396 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();
}
}
More information about the Libreoffice-commits
mailing list