| 2857 | } |
| 2858 | |
| 2859 | void UICodeEditor::addUnlockedCommands( const std::vector<std::string>& commands ) { |
| 2860 | mUnlockedCmd.insert( commands.begin(), commands.end() ); |
| 2861 | } |
| 2862 | |
| 2863 | void UICodeEditor::removeUnlockedCommands( const std::vector<std::string>& commands ) { |
| 2864 | for ( const auto& cmd : commands ) |
no test coverage detected