diff options
author | Tor Lillqvist <tml@collabora.com> | 2017-02-12 12:39:13 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2017-02-12 12:43:12 +0200 |
commit | 20c43a23d1d02523da2a72c37b839350798c775f (patch) | |
tree | ca091afc2e1eaf39051aa6242c60764b5079bdb2 /tools | |
parent | d4c09a4e3737c1355c666299d8a3f3f30dc659dd (diff) |
"Unicode" is a proper noun and should not be used in plural
The 16-bit things that make up the UTF-16 encoding are called "code
units".
Change-Id: Iab2b83323783e518198c1a0553f7b053fc415985
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/stream/stream.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx index 9035a9cecff1..f54924fc7087 100644 --- a/tools/source/stream/stream.cxx +++ b/tools/source/stream/stream.cxx @@ -2002,7 +2002,7 @@ OString read_uInt8s_ToOString(SvStream& rStrm, std::size_t nLen) return pStr ? OString(pStr, SAL_NO_ACQUIRE) : OString(); } -//Create a OUString of nLen sal_Unicodes from rStream +//Create a OUString of nLen sal_Unicode code units from rStream OUString read_uInt16s_ToOUString(SvStream& rStrm, std::size_t nLen) { rtl_uString *pStr = nullptr; |