! * enables the undo awareness of the aspect (modifications are put onto the undo stack) if \c value is set to \c true, * disables it otherwise. Note, this function doesn't modify the behavior of aspects's children, the behavior of the children * needs to be handled separately, if needed. */
| 990 | * needs to be handled separately, if needed. |
| 991 | */ |
| 992 | void AbstractAspect::setUndoAware(bool value) { |
| 993 | d->m_undoAware = value; |
| 994 | } |
| 995 | |
| 996 | /*! |
| 997 | * returns \c true if the aspect is undo aware (modifications are put onto the undo stack), returns \c false otherwise. |
no outgoing calls
no test coverage detected