| 29 | } |
| 30 | |
| 31 | void EditJournal::AddTagChange(std::string key, std::string old_value, std::string new_value) |
| 32 | { |
| 33 | LOG(LDEBUG, ("Key ", key, "changed from \"", old_value, "\" to \"", new_value, "\"")); |
| 34 | AddJournalEntry({JournalEntryType::TagModification, time(nullptr), |
| 35 | TagModData{std::move(key), std::move(old_value), std::move(new_value)}}); |
| 36 | } |
| 37 | |
| 38 | void EditJournal::MarkAsCreated(uint32_t type, feature::GeomType geomType, m2::PointD mercator) |
| 39 | { |
no outgoing calls