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

loplugin:stringconstant: adapt to improved OUStringLiteral1 (unoidl)

Change-Id: I8f7fb8bba65f99732bb172b45e309868047f545c
üst 70986cc3
......@@ -242,7 +242,7 @@ ALNUM {DIGIT}|{ALPHA}
. {
unsigned char c = yytext[0];
yyextra->errorMessage = c >= ' ' && c <= '~'
? OUString("invalid character \"" + OUString(sal_Unicode(c)) + "\"")
? OUString("invalid character \"" + OUStringLiteral1(c) + "\"")
: OUString(
"invalid byte x" + OUString::number(c, 16).toAsciiUpperCase());
return TOK_ERROR;
......
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