summaryrefslogtreecommitdiff
path: root/vcl/osx/salframe.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-11-06 10:19:44 +0200
committerNoel Grandin <noel@peralex.com>2014-11-06 10:20:37 +0200
commitd519c312fabef58e4655837ea9069f2ebd92d762 (patch)
tree2184e69925d7dfb58cda484e5b5c6d0f5ac1adeb /vcl/osx/salframe.cxx
parent6efb46c6493d4c3c2208dcbea25471c0268fc10c (diff)
rename KEY_MODTYPE to KEY_MODIFIERS_MASK
Change-Id: I7948988e4fd89bf94a98afee15298cd33e2a4d06
Diffstat (limited to 'vcl/osx/salframe.cxx')
-rw-r--r--vcl/osx/salframe.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/osx/salframe.cxx b/vcl/osx/salframe.cxx
index f205caf2add7..0f266dbc26ad 100644
--- a/vcl/osx/salframe.cxx
+++ b/vcl/osx/salframe.cxx
@@ -1007,7 +1007,7 @@ OUString AquaSalFrame::GetKeyName( sal_uInt16 nKeyCode )
OUStringBuffer aResult( 16 );
- sal_uInt16 nUnmodifiedCode = (nKeyCode & KEY_CODE);
+ sal_uInt16 nUnmodifiedCode = (nKeyCode & KEY_CODE_MASK);
std::map< sal_uInt16, OUString >::const_iterator it = aKeyMap.find( nUnmodifiedCode );
if( it != aKeyMap.end() )
{