ソースを参照

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.
Lioncash 7 年 前
コミット
8bdef4f951
1 ファイル変更0 行追加2 行削除
  1. 0 2
      src/yuzu/hotkeys.h

+ 0 - 2
src/yuzu/hotkeys.h

@@ -67,8 +67,6 @@ public:
 
 
 private:
 private:
     struct Hotkey {
     struct Hotkey {
-        Hotkey() : shortcut(nullptr), context(Qt::WindowShortcut) {}
-
         QKeySequence keyseq;
         QKeySequence keyseq;
         QShortcut* shortcut = nullptr;
         QShortcut* shortcut = nullptr;
         Qt::ShortcutContext context = Qt::WindowShortcut;
         Qt::ShortcutContext context = Qt::WindowShortcut;