From 0b0cea7fd774d1fd9c66eab3026940dc4a8899cc Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Sat, 7 Sep 2013 12:52:21 +0200 Subject: fix validity dialog with lists, fdo#65686 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit regression from b0cf3aba085373d84a55ef144b273a8a89d017af Change-Id: Ia3d39e02f35f3e23d93c7fe771bdbeb6eb3d2caf Reviewed-on: https://gerrit.libreoffice.org/5856 Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- sc/source/core/data/global.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc/source/core/data/global.cxx b/sc/source/core/data/global.cxx index 8c05b6aa4c6f..f75b936dbb67 100644 --- a/sc/source/core/data/global.cxx +++ b/sc/source/core/data/global.cxx @@ -826,7 +826,7 @@ void ScGlobal::AddQuotes( OUString& rString, sal_Unicode cQuote, bool bEscapeEmb OUString aQuotes( pQ ); rString = rString.replaceAll( OUString(cQuote), aQuotes); } - rString = OUString( cQuote ) + OUString( cQuote ); + rString = OUString( cQuote ) + rString + OUString( cQuote ); } void ScGlobal::EraseQuotes( OUString& rString, sal_Unicode cQuote, bool bUnescapeEmbedded ) -- cgit v1.2.3