Skip to content

Commit

Permalink
fix for incorrect method names
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslansin committed Aug 7, 2016
1 parent cda769b commit e1428d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hotkeymap.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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)
Expand Down

0 comments on commit e1428d4

Please sign in to comment.