Skip to content
Snippets Groups Projects
Commit e28a5b0d authored by Lioncash's avatar Lioncash
Browse files

configure_hotkey: Make IsUsedKey() a const member function

This doesn't actually modify instance state of the dialog, so this can
be made const.
parent 2598433f
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,7 @@ void ConfigureHotkeys::Configure(QModelIndex index) {
}
}
bool ConfigureHotkeys::IsUsedKey(QKeySequence key_sequence) {
bool ConfigureHotkeys::IsUsedKey(QKeySequence key_sequence) const {
return GetUsedKeyList().contains(key_sequence);
}
......
......@@ -39,7 +39,7 @@ signals:
private:
void Configure(QModelIndex index);
bool IsUsedKey(QKeySequence key_sequence);
bool IsUsedKey(QKeySequence key_sequence) const;
QList<QKeySequence> GetUsedKeyList() const;
std::unique_ptr<Ui::ConfigureHotkeys> ui;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment