diff options
author | Tor Lillqvist <tml@collabora.com> | 2017-02-12 12:55:00 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2017-02-12 12:57:32 +0200 |
commit | 6d15d4a6f6fbc163001ec082d55404481e64bed1 (patch) | |
tree | a4e137c06b189aea468e0e46e938ffd8ed4ea84c /vcl/source/outdev/font.cxx | |
parent | ce1fec5f5d23676e2a02dde062f9b678d4d1dfd0 (diff) |
Get rid of "unicodes" in lower-case, too
Instead, use "code points" (if you mean full 21-bit Unicode code
points), or "code units" (if you mean the 16-bit units that make up
UTF-16). Hopefully I got it right which one was meant in each case
here.
Change-Id: I8ee7a98996f1cebcfb95cd7d18a56570e48fa390
Diffstat (limited to 'vcl/source/outdev/font.cxx')
-rw-r--r-- | vcl/source/outdev/font.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/outdev/font.cxx b/vcl/source/outdev/font.cxx index cea5665cc6ac..1c04f0520489 100644 --- a/vcl/source/outdev/font.cxx +++ b/vcl/source/outdev/font.cxx @@ -1377,7 +1377,7 @@ SalLayout* OutputDevice::ImplGlyphFallbackLayout( SalLayout* pSalLayout, ImplLay rLayoutArgs.PrepareFallback(); rLayoutArgs.mnFlags |= SalLayoutFlags::ForFallback; - // get list of unicodes that need glyph fallback + // get list of code units that need glyph fallback int nCharPos = -1; bool bRTL = false; OUStringBuffer aMissingCodeBuf; @@ -1388,7 +1388,7 @@ SalLayout* OutputDevice::ImplGlyphFallbackLayout( SalLayout* pSalLayout, ImplLay FontSelectPattern aFontSelData = mpFontInstance->maFontSelData; - // try if fallback fonts support the missing unicodes + // try if fallback fonts support the missing code units for( int nFallbackLevel = 1; nFallbackLevel < MAX_FALLBACK; ++nFallbackLevel ) { // find a font family suited for glyph fallback |