| 892 | } |
| 893 | |
| 894 | void ZepEditor::SetCommandText(const std::string& strCommand) { |
| 895 | m_commandLines = string_split(strCommand, "\n\r"); |
| 896 | if (m_commandLines.empty()) { |
| 897 | m_commandLines.push_back(""); |
| 898 | } |
| 899 | m_bRegionsChanged = true; |
| 900 | } |
| 901 | |
| 902 | void ZepEditor::RequestRefresh() { |
| 903 | m_bPendingRefresh = true; |
no test coverage detected