[Libreoffice-commits] core.git: Branch 'libreoffice-5-2' - sc/source

Eike Rathke erack at redhat.com
Fri Oct 28 16:14:03 UTC 2016


 sc/source/core/tool/compiler.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 60c10127090ca76da3805aa7a5313798b268d7d6
Author: Eike Rathke <erack at redhat.com>
Date:   Thu Oct 27 13:25:59 2016 +0200

    sc: OOXML: actually write both sheet names in external 3D references
    
    ... instead of twice the same name. Even if not handled yet in Calc, external
    3D references may get imported and have to be written again.
    Copy&Paste error since 2f373570c51e13baf0530605ef59808462e6ca71
    
    Change-Id: I6cb982793e1072d619053c02860a8046e78bc99e
    (cherry picked from commit a6628078a929a39a95ae8b2f51348996dc41afbc)
    Reviewed-on: https://gerrit.libreoffice.org/30325
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>

diff --git a/sc/source/core/tool/compiler.cxx b/sc/source/core/tool/compiler.cxx
index 264b7c3..3721431 100644
--- a/sc/source/core/tool/compiler.cxx
+++ b/sc/source/core/tool/compiler.cxx
@@ -1184,7 +1184,7 @@ struct ConventionXL
         if (rTabName != aLastTabName)
         {
             rBuf.append(':');
-            ScRangeStringConverter::AppendTableName(rBuf, rTabName);
+            ScRangeStringConverter::AppendTableName(rBuf, aLastTabName);
         }
     }
 


More information about the Libreoffice-commits mailing list