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