diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-04-28 17:52:51 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-04-28 18:26:53 +0200 |
commit | b7f688f7ab4f79b6c2092f8756e66eb8219f88e4 (patch) | |
tree | 1a680fd860bced54690d393336a315b1f838114a /xmloff/source/xforms/TokenContext.cxx | |
parent | 0a4495f8bde3a30638baefd9506688f42d137997 (diff) |
loplugin:salunicodeliteral: xmloff
Change-Id: I751006fd054882a9ceab424675ac0505a9ddfd8b
Diffstat (limited to 'xmloff/source/xforms/TokenContext.cxx')
-rw-r--r-- | xmloff/source/xforms/TokenContext.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/xforms/TokenContext.cxx b/xmloff/source/xforms/TokenContext.cxx index 3aefb3a89f1a..315bccf5ccff 100644 --- a/xmloff/source/xforms/TokenContext.cxx +++ b/xmloff/source/xforms/TokenContext.cxx @@ -115,9 +115,9 @@ SvXMLImportContext* TokenContext::CreateChildContext( static bool lcl_IsWhiteSpace( sal_Unicode c ) { return c == ' ' - || c == sal_Unicode( 0x09 ) - || c == sal_Unicode( 0x0A ) - || c == sal_Unicode( 0x0D ); + || c == u'\x0009' + || c == u'\x000A' + || c == u'\x000D'; } void TokenContext::Characters( const OUString& rCharacters ) |