summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/dp_log.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-08-31 08:03:47 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-08-31 08:03:47 +0200
commit8fa038d895d67672131ad7ddb0792c3b2900b47d (patch)
tree7017e73b2a81a1360e81f281592c44842022b074 /desktop/source/deployment/dp_log.cxx
parentc2f8beb5934aa345ff7b4aebc233c73c7642e487 (diff)
loplugin:stringconstant: OUStringBuffer: appendAscii -> append
Change-Id: If839a783a57fb22566cc5e577f0f28463842f5dd
Diffstat (limited to 'desktop/source/deployment/dp_log.cxx')
-rw-r--r--desktop/source/deployment/dp_log.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/deployment/dp_log.cxx b/desktop/source/deployment/dp_log.cxx
index 6cc894c4c548..aa6d54b04ce3 100644
--- a/desktop/source/deployment/dp_log.cxx
+++ b/desktop/source/deployment/dp_log.cxx
@@ -169,10 +169,10 @@ void ProgressLogImpl::update( Any const & Status )
buf.append( msg );
}
else {
- buf.appendAscii( "ERROR: " );
+ buf.append( "ERROR: " );
buf.append( ::comphelper::anyToString(Status) );
}
- buf.appendAscii( "\n" );
+ buf.append( "\n" );
log_write( OUStringToOString(
buf.makeStringAndClear(), osl_getThreadTextEncoding() ) );
}