Kaydet (Commit) b0434a2a authored tarafından Thomas Arnhold's avatar Thomas Arnhold

simplify copy

Change-Id: Iec5a960b0a6492b1e4690c31b9c2098248c23cfa
üst ff6c2e72
......@@ -831,7 +831,7 @@ void ScGlobal::EraseQuotes( OUString& rString, sal_Unicode cQuote, bool bUnescap
{
if ( IsQuoted( rString, cQuote ) )
{
rString = rString.copy( 0, rString.getLength() - 1 ).copy( 1 );
rString = rString.copy( 1, rString.getLength() - 1 );
if (bUnescapeEmbedded)
{
sal_Unicode pQ[3];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment