summaryrefslogtreecommitdiffstats
path: root/sc/source/filter/oox
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-08-31 08:02:18 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-08-31 08:02:18 +0200
commit9f075246c59225dbd9ec7f700de8bbba491cb458 (patch)
tree55702a66d705684ebe91e21c3b3a54869853b284 /sc/source/filter/oox
parentloplugin:stringconstant: OUStringBuffer: appendAscii -> append (diff)
downloadcore-9f075246c59225dbd9ec7f700de8bbba491cb458.tar.gz
core-9f075246c59225dbd9ec7f700de8bbba491cb458.zip
loplugin:stringconstant: OUStringBuffer: appendAscii -> append
Change-Id: I4e350a0c6045d07677edae4f9921db0a42b4e0f5
Diffstat (limited to 'sc/source/filter/oox')
-rw-r--r--sc/source/filter/oox/formulabase.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/oox/formulabase.cxx b/sc/source/filter/oox/formulabase.cxx
index b31020b69556..e9914c551e1d 100644
--- a/sc/source/filter/oox/formulabase.cxx
+++ b/sc/source/filter/oox/formulabase.cxx
@@ -1644,7 +1644,7 @@ OUString FormulaProcessorBase::generateApiArray( const Matrix< Any >& rMatrix )
else if( *aIt >>= aString )
aBuffer.append( generateApiString( aString ) );
else
- aBuffer.appendAscii( "\"\"" );
+ aBuffer.append( "\"\"" );
}
}
aBuffer.append( API_TOKEN_ARRAY_CLOSE );