summaryrefslogtreecommitdiff
path: root/include/rsc
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 /include/rsc
parent6efb46c6493d4c3c2208dcbea25471c0268fc10c (diff)
rename KEY_MODTYPE to KEY_MODIFIERS_MASK
Change-Id: I7948988e4fd89bf94a98afee15298cd33e2a4d06
Diffstat (limited to 'include/rsc')
-rw-r--r--include/rsc/rsc-vcl-shared-types.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/rsc/rsc-vcl-shared-types.hxx b/include/rsc/rsc-vcl-shared-types.hxx
index eab2e0419a82..016ff2fca176 100644
--- a/include/rsc/rsc-vcl-shared-types.hxx
+++ b/include/rsc/rsc-vcl-shared-types.hxx
@@ -134,14 +134,14 @@ namespace o3tl
template<> struct typed_flags<WindowBorderStyle> : is_typed_flags<WindowBorderStyle, 0x3033> {};
}
-#define KEY_CODE ((sal_uInt16)0x0FFF)
+#define KEY_CODE_MASK ((sal_uInt16)0x0FFF)
// Modifier-Tasten
-#define KEY_SHIFT ((sal_uInt16)0x1000)
-#define KEY_MOD1 ((sal_uInt16)0x2000)
-#define KEY_MOD2 ((sal_uInt16)0x4000)
-#define KEY_MOD3 ((sal_uInt16)0x8000)
-#define KEY_MODTYPE ((sal_uInt16)0xF000)
+#define KEY_SHIFT ((sal_uInt16)0x1000)
+#define KEY_MOD1 ((sal_uInt16)0x2000)
+#define KEY_MOD2 ((sal_uInt16)0x4000)
+#define KEY_MOD3 ((sal_uInt16)0x8000)
+#define KEY_MODIFIERS_MASK ((sal_uInt16)0xF000)
#endif