diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-08-31 08:01:42 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-08-31 08:01:42 +0200 |
commit | e807dafa5ba9247479f925f96474d88d58450be9 (patch) | |
tree | 7c35799a8c6b1c7dc7791da0621c6299bcd9f709 /svl | |
parent | c62ab814d8df19e16c82262093a350fac93d328d (diff) |
loplugin:stringconstant: OUStringBuffer: appendAscii -> append
Change-Id: I5aa87d22f0b810597ba5dd2f8b98d148ddb99020
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/misc/gridprinter.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svl/source/misc/gridprinter.cxx b/svl/source/misc/gridprinter.cxx index 2cbadca0a8a9..f15c8e7658fb 100644 --- a/svl/source/misc/gridprinter.cxx +++ b/svl/source/misc/gridprinter.cxx @@ -96,13 +96,13 @@ void GridPrinter::print( const char* pHeader ) const // Make the row separator string. OUStringBuffer aBuf; - aBuf.appendAscii("+"); + aBuf.append("+"); for (size_t col = 0; col < ns.column; ++col) { - aBuf.appendAscii("-"); + aBuf.append("-"); for (sal_Int32 i = 0; i < aColWidths[col]; ++i) aBuf.append(sal_Unicode('-')); - aBuf.appendAscii("-+"); + aBuf.append("-+"); } OUString aSep = aBuf.makeStringAndClear(); |