diff options
author | bunnei <bunneidev@gmail.com> | 2019-05-09 13:21:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-09 13:21:36 -0400 |
commit | 9567b3a293319693ca8702860714b734c03abb3f (patch) | |
tree | d1fb5556a7e3158e9dc4af354c2742069823f801 /src | |
parent | c6f3831320173228d6299e79a4da766cb8b94fd8 (diff) | |
parent | 8bdef4f95155378206d14bd134217733d305e782 (diff) |
Merge pull request #2458 from lioncash/hotkey
yuzu/hotkeys: Remove unnecessary constructor
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/hotkeys.h | 2 |
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: private: struct Hotkey { - Hotkey() : shortcut(nullptr), context(Qt::WindowShortcut) {} - QKeySequence keyseq; QShortcut* shortcut = nullptr; Qt::ShortcutContext context = Qt::WindowShortcut; |