| 2787 | } |
| 2788 | |
| 2789 | void UICodeEditor::replaceKeyBindingString( const std::string& shortcut, const std::string& command, |
| 2790 | const bool& allowLocked ) { |
| 2791 | mKeyBindings.replaceKeybindString( shortcut, command ); |
| 2792 | if ( allowLocked ) |
| 2793 | mUnlockedCmd.insert( command ); |
| 2794 | } |
| 2795 | |
| 2796 | void UICodeEditor::replaceKeyBinding( const KeyBindings::Shortcut& shortcut, |
| 2797 | const std::string& command, const bool& allowLocked ) { |
nothing calls this directly
no test coverage detected