sc/source/core/data/column2.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit f87b678a40ab73402366f409078f20425f258953
Author: Tor Lillqvist <t...@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 <er...@redhat.com>
    Tested-by: Tor Lillqvist <t...@collabora.com>
    (cherry picked from commit 326da3886e6f700ad1fb269df201fae9fa01d5df)
    Reviewed-on: https://gerrit.libreoffice.org/28629
    Tested-by: Jenkins <c...@libreoffice.org>
    Tested-by: Eike Rathke <er...@redhat.com>

diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx
index fbaf4da..5a9d69a 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();
         }
     }
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to