| 626 | } |
| 627 | |
| 628 | ZepExCommand* ZepEditor::FindExCommand(const std::string& strName) { |
| 629 | auto itr = m_mapExCommands.find(strName); |
| 630 | if (itr != m_mapExCommands.end()) { |
| 631 | return itr->second.get(); |
| 632 | } |
| 633 | return nullptr; |
| 634 | } |
| 635 | |
| 636 | ZepExCommand* ZepEditor::FindExCommand(const StringId& Id) { |
| 637 | if (Id.id == 0) { |
no test coverage detected