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

loplugin:salunicodeliteral: configmgr

Change-Id: I3c37025be286f9fd1892c259e2ac1e2fce7123a1
üst fbc26527
......@@ -227,7 +227,7 @@ bool decode(OUString * string, bool slash) {
return true;
}
if (string->match("00", i + 1)) {
*string = string->replaceAt(i, 3, OUString(sal_Unicode(0)));
*string = string->replaceAt(i, 3, OUString(u'\0'));
} else if (slash && string->match("2F", i + 1)) {
*string = string->replaceAt(i, 3, "/");
} else if (string->match("5C", i + 1)) {
......
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