diff options
author | Dmitry Lukianov <Dmitrorus@gmail.com> | 2017-08-05 15:59:40 +0700 |
---|---|---|
committer | Dmitry Lukianov <Dmitrorus@gmail.com> | 2017-08-05 15:59:40 +0700 |
commit | 2616ec46f5b69e3452788394ba6d0e21232463cc (patch) | |
tree | 21e108a48750ceb26e173d865b60d1cf88121e72 /qxt-mini/qxtglobalshortcut_mac.cpp | |
parent | 7612e2d171e5b433e7fd206c850baeb636920045 (diff) |
fixed macos build
Diffstat (limited to 'qxt-mini/qxtglobalshortcut_mac.cpp')
-rw-r--r-- | qxt-mini/qxtglobalshortcut_mac.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/qxt-mini/qxtglobalshortcut_mac.cpp b/qxt-mini/qxtglobalshortcut_mac.cpp index 55684667..d7cd7f84 100644 --- a/qxt-mini/qxtglobalshortcut_mac.cpp +++ b/qxt-mini/qxtglobalshortcut_mac.cpp @@ -80,7 +80,7 @@ quint32 QxtGlobalShortcutPrivate::nativeKeycode(Qt::Key keys) { UTF16Char ch; // Constants found in NSEvent.h from AppKit.framework - switch (key) + switch (keys) { case Qt::Key_Return: return kVK_Return; @@ -170,11 +170,11 @@ quint32 QxtGlobalShortcutPrivate::nativeKeycode(Qt::Key keys) ; } - if (key == Qt::Key_Escape) ch = 27; - else if (key == Qt::Key_Return) ch = 13; - else if (key == Qt::Key_Enter) ch = 3; - else if (key == Qt::Key_Tab) ch = 9; - else ch = key; + if (keys == Qt::Key_Escape) ch = 27; + else if (keys == Qt::Key_Return) ch = 13; + else if (keys == Qt::Key_Enter) ch = 3; + else if (keys == Qt::Key_Tab) ch = 9; + else ch = keys; CFDataRef currentLayoutData; TISInputSourceRef currentKeyboard = TISCopyCurrentKeyboardInputSource(); |