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

New commits:
commit 0b0cea7fd774d1fd9c66eab3026940dc4a8899cc
Author: Markus Mohrhard <[email protected]>
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 <[email protected]>
    Tested-by: Caolán McNamara <[email protected]>

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 )
_______________________________________________
Libreoffice-commits mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to