summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-08-31 14:37:36 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-08-31 14:39:12 +0200
commit330680784a9f30926142986a44ac187e86e4fc02 (patch)
treeec0662fbaf563bda4dbe76f838ff190cf9bcabe7 /shell
parent78970193945e978bf5f41f41a116c4d6e1016085 (diff)
loplugin:stringconstant: OUStringBuffer: appendAscii -> append
Change-Id: Idc3c74505d84a96bb5cc6713a95ef2fadc267ea8
Diffstat (limited to 'shell')
-rw-r--r--shell/source/backends/localebe/localebackend.cxx2
1 files changed, 1 insertions, 1 deletions
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