diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-08-31 08:00:53 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-08-31 08:00:53 +0200 |
commit | c168ff9c5e5a81cb610ebd1f4a2b763df51e17a2 (patch) | |
tree | 894f5f87d7738196ea03c7bc09f355dc79351878 /ucbhelper/source | |
parent | 5e7627469cad44e10bcc9a764631b9ee2c682dc1 (diff) |
loplugin:stringconstant: OUStringBuffer: appendAscii -> append
Change-Id: If38423c29c7a9f4d740c244d350b83c471523797
Diffstat (limited to 'ucbhelper/source')
-rw-r--r-- | ucbhelper/source/client/proxydecider.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ucbhelper/source/client/proxydecider.cxx b/ucbhelper/source/client/proxydecider.cxx index 2faff9382617..4b6bda7c068d 100644 --- a/ucbhelper/source/client/proxydecider.cxx +++ b/ucbhelper/source/client/proxydecider.cxx @@ -425,9 +425,9 @@ bool InternetProxyDecider_Impl::shouldUseProxy( const OUString & rHost, ( rHost[ 0 ] != '[' ) ) { // host is given as numeric IPv6 address - aBuffer.appendAscii( "[" ); + aBuffer.append( "[" ); aBuffer.append( rHost ); - aBuffer.appendAscii( "]" ); + aBuffer.append( "]" ); } else { @@ -746,15 +746,15 @@ void InternetProxyDecider_Impl::setNoProxyList( { if ( bIPv6Address ) { - aFullyQualifiedHost.appendAscii( "[" ); + aFullyQualifiedHost.append( "[" ); aFullyQualifiedHost.append( aTmp ); - aFullyQualifiedHost.appendAscii( "]" ); + aFullyQualifiedHost.append( "]" ); } else { aFullyQualifiedHost.append( aTmp ); } - aFullyQualifiedHost.appendAscii( ":" ); + aFullyQualifiedHost.append( ":" ); aFullyQualifiedHost.append( aPort ); } } |