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/osx | |
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/osx')
-rw-r--r-- | vcl/osx/salframeview.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/osx/salframeview.mm b/vcl/osx/salframeview.mm index 1b16485edcff..15d5733cd882 100644 --- a/vcl/osx/salframeview.mm +++ b/vcl/osx/salframeview.mm @@ -1550,7 +1550,7 @@ SAL_WNODEPRECATED_DECLARATIONS_POP } if( nKeyCode != 0 ) { - // don't send unicodes in the private use area + // don't send code points in the private use area if( keyChar >= 0xf700 && keyChar < 0xf780 ) keyChar = 0; BOOL bRet = [self sendKeyToFrameDirect: nKeyCode character: keyChar modifiers: mpFrame->mnLastModifierFlags]; |