summaryrefslogtreecommitdiffhomepage
path: root/qxt-mini
diff options
context:
space:
mode:
authorDmitry Lukianov <Dmitrorus@gmail.com>2017-08-05 15:59:40 +0700
committerDmitry Lukianov <Dmitrorus@gmail.com>2017-08-05 15:59:40 +0700
commit2616ec46f5b69e3452788394ba6d0e21232463cc (patch)
tree21e108a48750ceb26e173d865b60d1cf88121e72 /qxt-mini
parent7612e2d171e5b433e7fd206c850baeb636920045 (diff)
fixed macos build
Diffstat (limited to 'qxt-mini')
-rw-r--r--qxt-mini/qxtglobalshortcut_mac.cpp12
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();