[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - sc/source

Markus Mohrhard markus.mohrhard at googlemail.com
Sat Sep 7 05:19:28 PDT 2013


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

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

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