summaryrefslogtreecommitdiff
path: root/vcl/unx/kde/UnxCommandThread.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-08-31 14:37:41 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-08-31 14:39:12 +0200
commit0f3ccde7fef8550837f0db52d706281975bc2523 (patch)
tree6f46a3a1d2a7918e5f127268850f63b2a4ad4be5 /vcl/unx/kde/UnxCommandThread.cxx
parent330680784a9f30926142986a44ac187e86e4fc02 (diff)
loplugin:stringconstant: OUStringBuffer: appendAscii -> append
Change-Id: I83f45260158f5282b857458046d2e324be85a7b5
Diffstat (limited to 'vcl/unx/kde/UnxCommandThread.cxx')
-rw-r--r--vcl/unx/kde/UnxCommandThread.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/kde/UnxCommandThread.cxx b/vcl/unx/kde/UnxCommandThread.cxx
index 46ff51c54151..b7c4a868289d 100644
--- a/vcl/unx/kde/UnxCommandThread.cxx
+++ b/vcl/unx/kde/UnxCommandThread.cxx
@@ -48,7 +48,7 @@ namespace {
if ( pUnicode != pEnd )
{
if ( *pUnicode == 'n' )
- aBuffer.appendAscii( "\n", 1 );
+ aBuffer.append( "\n" );
else
aBuffer.append( *pUnicode );
}