diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-08-31 08:03:25 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-08-31 08:03:25 +0200 |
commit | c42d21652000c28df16d67bd46cf3e0116099f3e (patch) | |
tree | c48d7c5b46fc5cbc0adc47dc16edcceee78bd059 /formula/source | |
parent | e9b75064158a9482d79a123319ad0fe8c497e40a (diff) |
loplugin:stringconstant: OUStringBuffer: appendAscii -> append
Change-Id: I324dd37d063ea01fd15152caf2f7565ac4b6fb4e
Diffstat (limited to 'formula/source')
-rw-r--r-- | formula/source/core/api/FormulaCompiler.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/formula/source/core/api/FormulaCompiler.cxx b/formula/source/core/api/FormulaCompiler.cxx index 085f1bccd0de..bed66336c825 100644 --- a/formula/source/core/api/FormulaCompiler.cxx +++ b/formula/source/core/api/FormulaCompiler.cxx @@ -1815,7 +1815,7 @@ const FormulaToken* FormulaCompiler::CreateStringFromToken( OUStringBuffer& rBuf } } if (bIntersectionOp) - rBuffer.appendAscii( "!!"); + rBuffer.append( "!!"); else { // most times it's just one blank |