| 743 | |
| 744 | |
| 745 | void CommandManager::SetKeyFromName(const CommandID &name, |
| 746 | const NormalizedKeyString &key) |
| 747 | { |
| 748 | if (auto iter = mCommandNameHash.find(name); |
| 749 | iter != mCommandNameHash.end()) |
| 750 | iter->second->key = key; |
| 751 | } |
| 752 | |
| 753 | void CommandManager::SetKeyFromIndex(int i, const NormalizedKeyString &key) |
| 754 | { |
no test coverage detected