diff options
author | bunnei <bunneidev@gmail.com> | 2019-05-25 22:58:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-25 22:58:46 -0400 |
commit | 91300bdfb2c243dddea4f23fab752d47c9ad66a3 (patch) | |
tree | c7080e0146a804680477354b58779ab934138118 /src/yuzu/configuration/configure_hotkeys.h | |
parent | e86d2e2e5bb1929b4c5f3f5f43e510f262bd8875 (diff) | |
parent | 88cd5e888e6bcd611dbcd18648697ef2e6bcba04 (diff) |
Merge pull request #2517 from lioncash/hotkey
configure_hotkeys: Minor cleanup
Diffstat (limited to 'src/yuzu/configuration/configure_hotkeys.h')
-rw-r--r-- | src/yuzu/configuration/configure_hotkeys.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/yuzu/configuration/configure_hotkeys.h b/src/yuzu/configuration/configure_hotkeys.h index 73fb8a175..e77d73c35 100644 --- a/src/yuzu/configuration/configure_hotkeys.h +++ b/src/yuzu/configuration/configure_hotkeys.h @@ -24,8 +24,6 @@ public: void applyConfiguration(HotkeyRegistry& registry); void retranslateUi(); - void EmitHotkeysChanged(); - /** * Populates the hotkey list widget using data from the provided registry. * Called everytime the Configure dialog is opened. @@ -33,13 +31,9 @@ public: */ void Populate(const HotkeyRegistry& registry); -signals: - void HotkeysChanged(QList<QKeySequence> new_key_list); - private: void Configure(QModelIndex index); bool IsUsedKey(QKeySequence key_sequence) const; - QList<QKeySequence> GetUsedKeyList() const; std::unique_ptr<Ui::ConfigureHotkeys> ui; |