* \brief Return the path that leads from the top-most Aspect (usually a Project) to me. */
| 512 | * \brief Return the path that leads from the top-most Aspect (usually a Project) to me. |
| 513 | */ |
| 514 | QString AbstractAspect::path() const { |
| 515 | return parentAspect() ? parentAspect()->path() + QLatin1Char('/') + name() : QString(); |
| 516 | } |
| 517 | |
| 518 | /** |
| 519 | * \brief Add the given Aspect to my list of children. |