mirror of
https://git.h3cjp.net/H3cJP/yuzu.git
synced 2024-11-13 17:32:49 +00:00
yuzu/hotkeys: Remove unnecessary constructor
The behavior of the Hotkey constructor is already accomplished via in-class member initializers, so the constructor is superfluous here.
This commit is contained in:
parent
75a8b304d4
commit
8bdef4f951
|
@ -67,8 +67,6 @@ public:
|
|||
|
||||
private:
|
||||
struct Hotkey {
|
||||
Hotkey() : shortcut(nullptr), context(Qt::WindowShortcut) {}
|
||||
|
||||
QKeySequence keyseq;
|
||||
QShortcut* shortcut = nullptr;
|
||||
Qt::ShortcutContext context = Qt::WindowShortcut;
|
||||
|
|
Loading…
Reference in a new issue