[Libreoffice-commits] core.git: Branch 'libreoffice-4-1-2' - sc/source
Markus Mohrhard
markus.mohrhard at googlemail.com
Mon Sep 9 01:35:23 PDT 2013
sc/source/core/data/global.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 61d74e6758cae039593de0d358860fd08227db80
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date: Sat Sep 7 12:52:21 2013 +0200
fix validity dialog with lists, fdo#65686
regression from b0cf3aba085373d84a55ef144b273a8a89d017af
Change-Id: Ia3d39e02f35f3e23d93c7fe771bdbeb6eb3d2caf
Reviewed-on: https://gerrit.libreoffice.org/5856
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
Reviewed-on: https://gerrit.libreoffice.org/5880
Reviewed-by: Andras Timar <andras.timar at collabora.com>
diff --git a/sc/source/core/data/global.cxx b/sc/source/core/data/global.cxx
index 8c05b6a..f75b936 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 )
More information about the Libreoffice-commits
mailing list