Kaydet (Commit) 33068078 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:stringconstant: OUStringBuffer: appendAscii -> append

Change-Id: Idc3c74505d84a96bb5cc6713a95ef2fadc267ea8
üst 78970193
...@@ -190,7 +190,7 @@ static OUString ImplGetLocale(int category) ...@@ -190,7 +190,7 @@ static OUString ImplGetLocale(int category)
if( uscore != NULL ) if( uscore != NULL )
{ {
aLocaleBuffer.appendAscii(locale, uscore++ - locale); aLocaleBuffer.appendAscii(locale, uscore++ - locale);
aLocaleBuffer.appendAscii("-"); aLocaleBuffer.append("-");
aLocaleBuffer.appendAscii(uscore, cp - uscore); aLocaleBuffer.appendAscii(uscore, cp - uscore);
} }
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment