From dfcf0bbcc51f50dfa93ac74623a069c3b527527a Mon Sep 17 00:00:00 2001 From: Eike Rathke Date: Tue, 11 Oct 2016 15:10:46 +0200 Subject: Resolves: tdf#101691 re-intern strings of external formula results If the external cell referenced is a formula result of type string that string needs to be re-interned for the reference cache as well. Change-Id: Iea3c3d777dede2ad6ba0b084533af964da991ca6 (cherry picked from commit 351164ea2c70923e47d5f01f3934c73cfc5839a9) Reviewed-on: https://gerrit.libreoffice.org/29695 Tested-by: Jenkins Reviewed-by: Markus Mohrhard --- sc/source/ui/docshell/externalrefmgr.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sc/source/ui/docshell/externalrefmgr.cxx b/sc/source/ui/docshell/externalrefmgr.cxx index 4b3c5213251b..bb174ad38ede 100644 --- a/sc/source/ui/docshell/externalrefmgr.cxx +++ b/sc/source/ui/docshell/externalrefmgr.cxx @@ -1571,8 +1571,8 @@ static FormulaToken* convertToToken( ScDocument* pHostDoc, ScDocument* pSrcDoc, } else { - svl::SharedString aStr = pFCell->GetString(); - return new formula::FormulaStringToken(aStr); + svl::SharedString aSS = pHostDoc->GetSharedStringPool().intern( pFCell->GetString().getString()); + return new formula::FormulaStringToken(aSS); } } default: -- cgit v1.2.3