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

loplugin:salunicodeliteral: svtools

Change-Id: I566b71b421bb2f2458f5d3f60e7d761d8725a004
üst 1000d122
......@@ -385,13 +385,13 @@ void SvRTFParser::ScanText()
aStrBuffer.append(sal_Unicode(nNextCh));
break;
case '~': // nonbreaking space
aStrBuffer.append(static_cast< sal_Unicode >(0xA0));
aStrBuffer.append(u'\x00A0');
break;
case '-': // optional hyphen
aStrBuffer.append(static_cast< sal_Unicode >(0xAD));
aStrBuffer.append(u'\x00AD');
break;
case '_': // nonbreaking hyphen
aStrBuffer.append(static_cast< sal_Unicode >(0x2011));
aStrBuffer.append(u'\x2011');
break;
case 'u':
......
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