| 588 | |
| 589 | |
| 590 | bool MapEditorToolBase::editedObjectsModified() const |
| 591 | { |
| 592 | Q_ASSERT(editingInProgress()); |
| 593 | |
| 594 | return std::any_of(begin(edited_items), end(edited_items), [](const EditedItem& item) { |
| 595 | return item.isModified(); |
| 596 | }); |
| 597 | } |
| 598 | |
| 599 | |
| 600 | void MapEditorToolBase::resetEditedObjects() |
nothing calls this directly
no test coverage detected