summarylogtreecommitdiffstats
path: root/fix_hotkeymap_h.patch
diff options
context:
space:
mode:
Diffstat (limited to 'fix_hotkeymap_h.patch')
-rw-r--r--fix_hotkeymap_h.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/fix_hotkeymap_h.patch b/fix_hotkeymap_h.patch
deleted file mode 100644
index b527cfc2f58a..000000000000
--- a/fix_hotkeymap_h.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- tools/UGlobalHotkey/hotkeymap.h 2016-03-30 19:53:28.641258206 -0400
-+++ tools/UGlobalHotkey/hotkeymap.h 2016-04-01 22:49:50.257090741 -0400
-@@ -137,7 +137,7 @@
- {
- UKeyData data = {0, 0};
-
-- auto key = keySeq.GetSimpleKeys();
-+ auto key = keySeq.getSimpleKeys();
- if (key.size() > 0) {
- data.key = key[0];
- } else {
-@@ -153,12 +153,12 @@
- } else if (data.key >= Qt::Key_Space && data.key <= Qt::Key_QuoteLeft) {
- // conversion is not necessary, if the value in the range Qt::Key_Space - Qt::Key_QuoteLeft
- } else {
-- qWarning() << "Invalid hotkey: key conversion is not defined");
-+ qWarning() << "Invalid hotkey: key conversion is not defined";
- return data;
- }
-
- // Modifiers conversion
-- auto mods = keySeq.GetModifiers();
-+ auto mods = keySeq.getModifiers();
-
- for (auto i : mods) {
- if (i == Qt::Key_Shift)