* \brief Remove me from my parent's list of children. */
| 678 | * \brief Remove me from my parent's list of children. |
| 679 | */ |
| 680 | void AbstractAspect::remove() { |
| 681 | if (parentAspect()) |
| 682 | parentAspect()->removeChild(this); |
| 683 | } |
| 684 | |
| 685 | void AbstractAspect::moveUp() { |
| 686 | auto* parent = parentAspect(); |
no test coverage detected