* \brief Insert the given Aspect at a specific position in my list of children. */
| 549 | * \brief Insert the given Aspect at a specific position in my list of children. |
| 550 | */ |
| 551 | void AbstractAspect::insertChildBefore(AbstractAspect* child, AbstractAspect* before) { |
| 552 | insertChild(child, d->indexOfChild(before)); |
| 553 | } |
| 554 | |
| 555 | void AbstractAspect::insertChild(AbstractAspect* child, int index) { |
| 556 | Q_CHECK_PTR(child); |