Browse Source

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.
nce_cpp
Lioncash 7 years ago
parent
commit
83794b9854
  1. 2
      src/yuzu/hotkeys.h

2
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;

Loading…
Cancel
Save