summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2019-05-09 13:21:36 -0400
committerGravatar GitHub2019-05-09 13:21:36 -0400
commit9567b3a293319693ca8702860714b734c03abb3f (patch)
treed1fb5556a7e3158e9dc4af354c2742069823f801 /src
parentMerge pull request #2456 from lioncash/qualifier (diff)
parentyuzu/hotkeys: Remove unnecessary constructor (diff)
downloadyuzu-9567b3a293319693ca8702860714b734c03abb3f.tar.gz
yuzu-9567b3a293319693ca8702860714b734c03abb3f.tar.xz
yuzu-9567b3a293319693ca8702860714b734c03abb3f.zip
Merge pull request #2458 from lioncash/hotkey
yuzu/hotkeys: Remove unnecessary constructor
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/hotkeys.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/yuzu/hotkeys.h b/src/yuzu/hotkeys.h
index 4f526dc7e..248fadaf3 100644
--- a/src/yuzu/hotkeys.h
+++ b/src/yuzu/hotkeys.h
@@ -67,8 +67,6 @@ public:
67 67
68private: 68private:
69 struct Hotkey { 69 struct Hotkey {
70 Hotkey() : shortcut(nullptr), context(Qt::WindowShortcut) {}
71
72 QKeySequence keyseq; 70 QKeySequence keyseq;
73 QShortcut* shortcut = nullptr; 71 QShortcut* shortcut = nullptr;
74 Qt::ShortcutContext context = Qt::WindowShortcut; 72 Qt::ShortcutContext context = Qt::WindowShortcut;