mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
Merge pull request #517 from weslly/fix-compile
Fix OSX El Capitan compilation issue
This commit is contained in:
commit
ab3e009d76
@ -403,12 +403,12 @@ uint16 AutoTypePlatformMac::qtToNativeKeyCode(Qt::Key key)
|
|||||||
//
|
//
|
||||||
CGEventFlags AutoTypePlatformMac::qtToNativeModifiers(Qt::KeyboardModifiers modifiers, bool native)
|
CGEventFlags AutoTypePlatformMac::qtToNativeModifiers(Qt::KeyboardModifiers modifiers, bool native)
|
||||||
{
|
{
|
||||||
CGEventFlags nativeModifiers = 0;
|
CGEventFlags nativeModifiers = CGEventFlags(0);
|
||||||
|
|
||||||
CGEventFlags shiftMod = shiftKey;
|
CGEventFlags shiftMod = CGEventFlags(shiftKey);
|
||||||
CGEventFlags cmdMod = cmdKey;
|
CGEventFlags cmdMod = CGEventFlags(cmdKey);
|
||||||
CGEventFlags optionMod = optionKey;
|
CGEventFlags optionMod = CGEventFlags(optionKey);
|
||||||
CGEventFlags controlMod = controlKey;
|
CGEventFlags controlMod = CGEventFlags(controlKey);
|
||||||
|
|
||||||
if (native) {
|
if (native) {
|
||||||
shiftMod = kCGEventFlagMaskShift;
|
shiftMod = kCGEventFlagMaskShift;
|
||||||
|
Loading…
Reference in New Issue
Block a user