Remove the attached instance and decrease the counters
| 161 | |
| 162 | // Remove the attached instance and decrease the counters |
| 163 | void Patch::disconnectUndoSystem(IUndoSystem& undoSystem) |
| 164 | { |
| 165 | assert(_undoStateSaver); |
| 166 | |
| 167 | _undoStateSaver = nullptr; |
| 168 | undoSystem.releaseStateSaver(*this); |
| 169 | } |
| 170 | |
| 171 | // Return the interally stored AABB |
| 172 | const AABB& Patch::localAABB() const |
no test coverage detected