From 330680784a9f30926142986a44ac187e86e4fc02 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 31 Aug 2015 14:37:36 +0200 Subject: loplugin:stringconstant: OUStringBuffer: appendAscii -> append Change-Id: Idc3c74505d84a96bb5cc6713a95ef2fadc267ea8 --- shell/source/backends/localebe/localebackend.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell/source') diff --git a/shell/source/backends/localebe/localebackend.cxx b/shell/source/backends/localebe/localebackend.cxx index 6961116ac3df..ac9716731162 100644 --- a/shell/source/backends/localebe/localebackend.cxx +++ b/shell/source/backends/localebe/localebackend.cxx @@ -190,7 +190,7 @@ static OUString ImplGetLocale(int category) if( uscore != NULL ) { aLocaleBuffer.appendAscii(locale, uscore++ - locale); - aLocaleBuffer.appendAscii("-"); + aLocaleBuffer.append("-"); aLocaleBuffer.appendAscii(uscore, cp - uscore); } else -- cgit