| 596 | } |
| 597 | |
| 598 | void MockEditorInterface::begin_undo_action() { |
| 599 | for (auto &doc : m_documents[m_target_view]) |
| 600 | doc.save_state(); |
| 601 | m_save_undo[m_target_view] = false; |
| 602 | } |
| 603 | |
| 604 | void MockEditorInterface::end_undo_action() { |
| 605 | m_save_undo[m_target_view] = true; |
nothing calls this directly
no test coverage detected