From e1428d47dfbc1974b38927a9dbbab835c4319115 Mon Sep 17 00:00:00 2001 From: focusn1k Date: Sun, 7 Aug 2016 14:14:11 +0300 Subject: [PATCH] fix for incorrect method names --- hotkeymap.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hotkeymap.h b/hotkeymap.h index 9f2c6c4..97eaec8 100644 --- a/hotkeymap.h +++ b/hotkeymap.h @@ -137,7 +137,7 @@ inline UKeyData QtKeyToLinux(const UKeySequence &keySeq) { UKeyData data = {0, 0}; - auto key = keySeq.GetSimpleKeys(); + auto key = keySeq.getSimpleKeys(); if (key.size() > 0) { data.key = key[0]; } else { @@ -158,7 +158,7 @@ inline UKeyData QtKeyToLinux(const UKeySequence &keySeq) } // Modifiers conversion - auto mods = keySeq.GetModifiers(); + auto mods = keySeq.getModifiers(); for (auto i : mods) { if (i == Qt::Key_Shift)