| 311 | } |
| 312 | |
| 313 | void Document::addOrRemovePropertyOfObject(TransactionalObject* obj, |
| 314 | const Property* prop, const bool add) |
| 315 | { |
| 316 | changePropertyOfObject(obj, prop, [this, obj, prop, add]() { |
| 317 | d->activeUndoTransaction->addOrRemoveProperty(obj, prop, add); |
| 318 | }); |
| 319 | } |
| 320 | |
| 321 | bool Document::isPerformingTransaction() const |
| 322 | { |
no test coverage detected