Browse Source
Merge pull request #2458 from lioncash/hotkey
yuzu/hotkeys: Remove unnecessary constructor
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
2 deletions
-
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; |
|
|
|
|