summaryrefslogtreecommitdiff
path: root/vcl/source/font
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-02-12 12:55:00 +0200
committerTor Lillqvist <tml@collabora.com>2017-02-12 12:57:32 +0200
commit6d15d4a6f6fbc163001ec082d55404481e64bed1 (patch)
treea4e137c06b189aea468e0e46e938ffd8ed4ea84c /vcl/source/font
parentce1fec5f5d23676e2a02dde062f9b678d4d1dfd0 (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/font')
-rw-r--r--vcl/source/font/fontcharmap.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/font/fontcharmap.cxx b/vcl/source/font/fontcharmap.cxx
index fa0fb5b494a0..f30c4e670242 100644
--- a/vcl/source/font/fontcharmap.cxx
+++ b/vcl/source/font/fontcharmap.cxx
@@ -287,7 +287,7 @@ bool ParseCMAP( const unsigned char* pCmap, int nLength, CmapResult& rResult )
if( aConverter && aCvtContext )
{
- // determine the set of supported unicodes from encoded ranges
+ // determine the set of supported code points from encoded ranges
std::set<sal_UCS4> aSupportedCodePoints;
static const int NINSIZE = 64;
@@ -327,7 +327,7 @@ bool ParseCMAP( const unsigned char* pCmap, int nLength, CmapResult& rResult )
rtl_destroyTextToUnicodeConverter( aCvtContext );
rtl_destroyTextToUnicodeConverter( aConverter );
- // convert the set of supported unicodes to ranges
+ // convert the set of supported code points to ranges
std::vector<sal_UCS4> aSupportedRanges;
std::set<sal_UCS4>::const_iterator itChar = aSupportedCodePoints.begin();