diff options
author | Tor Lillqvist <tml@collabora.com> | 2016-09-02 20:44:27 +0300 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2016-09-02 20:07:49 +0000 |
commit | f87b678a40ab73402366f409078f20425f258953 (patch) | |
tree | 8396e9986a7bbbe966bc82cece28f9f6ce53098d | |
parent | 94a3b4db75ca042ae0e134c8d497d1759f36270b (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>
(cherry picked from commit 326da3886e6f700ad1fb269df201fae9fa01d5df)
Reviewed-on: https://gerrit.libreoffice.org/28629
Tested-by: Jenkins <ci@libreoffice.org>
Tested-by: Eike Rathke <erack@redhat.com>
-rw-r--r-- | sc/source/core/data/column2.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx index fbaf4daba584..5a9d69a8f68c 100644 --- a/sc/source/core/data/column2.cxx +++ b/sc/source/core/data/column2.cxx @@ -2378,7 +2378,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 { @@ -2516,7 +2516,7 @@ copyFirstFormulaBlock( pStrArray = rCxt.m_StrArrays.back().get(); } - (*pStrArray)[nPos] = aRes.maString.getDataIgnoreCase(); + (*pStrArray)[nPos] = aRes.maString.getData(); } } |