[Libreoffice-commits] core.git: sc/source

Winfried Donkers winfrieddonkers at libreoffice.org
Fri Apr 29 09:11:55 UTC 2016


 sc/source/core/tool/interpr8.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 47405e009500538732926739ae4b2636c0957238
Author: Winfried Donkers <winfrieddonkers at libreoffice.org>
Date:   Fri Apr 29 07:25:23 2016 +0200

    tdf#97831 follow up improve error handling
    
    (And make code consistent with other Excel2016 functions.)
    
    Change-Id: Id46b98fd1b7e8e036b6584ef382d1ff2171edab7
    Reviewed-on: https://gerrit.libreoffice.org/24485
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Eike Rathke <erack at redhat.com>
    Tested-by: Eike Rathke <erack at redhat.com>

diff --git a/sc/source/core/tool/interpr8.cxx b/sc/source/core/tool/interpr8.cxx
index 321929a..1235810 100644
--- a/sc/source/core/tool/interpr8.cxx
+++ b/sc/source/core/tool/interpr8.cxx
@@ -1413,7 +1413,7 @@ void ScInterpreter::ScConcat_MS()
         {
             case svString:
             case svDouble:
-                aResBuf.append( PopString().getString() );
+                aResBuf.append( GetString().getString() );
                 break;
             case svSingleRef :
             {
@@ -1541,7 +1541,7 @@ void ScInterpreter::ScTextJoin_MS()
         {
             case svString:
             case svDouble:
-                aDelimiters.push_back( PopString().getString() );
+                aDelimiters.push_back( GetString().getString() );
                 break;
             case svSingleRef :
             {
@@ -1669,7 +1669,7 @@ void ScInterpreter::ScTextJoin_MS()
                 case svString:
                 case svDouble:
                 {
-                    OUString aStr = PopString().getString();
+                    OUString aStr = GetString().getString();
                     if ( !aStr.isEmpty() || !bSkipEmpty )
                     {
                         if ( !bFirst )


More information about the Libreoffice-commits mailing list