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

Eike Rathke erack at redhat.com
Thu Oct 27 11:32:24 UTC 2016


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

New commits:
commit a6628078a929a39a95ae8b2f51348996dc41afbc
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

diff --git a/sc/source/core/tool/compiler.cxx b/sc/source/core/tool/compiler.cxx
index c863423..847fa5e 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