summaryrefslogtreecommitdiff
path: root/sc/source/core/data/global.cxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-09-07 12:52:21 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-09-07 12:55:45 +0200
commitcb460bf3ca6beab2478d29398ddfb6276ac19b04 (patch)
tree09d770497532ae6ed53cab34eff2d9d351209219 /sc/source/core/data/global.cxx
parent801a657ea62365974d96033e95e2fa6174f751cc (diff)
fix validity dialog with lists, fdo#65686
regression from b0cf3aba085373d84a55ef144b273a8a89d017af Change-Id: Ia3d39e02f35f3e23d93c7fe771bdbeb6eb3d2caf
Diffstat (limited to 'sc/source/core/data/global.cxx')
-rw-r--r--sc/source/core/data/global.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/data/global.cxx b/sc/source/core/data/global.cxx
index bc3136591dd0..744a589adc1a 100644
--- a/sc/source/core/data/global.cxx
+++ b/sc/source/core/data/global.cxx
@@ -831,7 +831,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 )