! * this function is called when the selection in ProjectExplorer was changed. * forwards the selection/deselection to the parent aspect via emitting a signal. */
| 1096 | * forwards the selection/deselection to the parent aspect via emitting a signal. |
| 1097 | */ |
| 1098 | void AbstractAspect::setSelected(bool s) { |
| 1099 | if (s) |
| 1100 | Q_EMIT selected(this); |
| 1101 | else |
| 1102 | Q_EMIT deselected(this); |
| 1103 | } |
| 1104 | |
| 1105 | void AbstractAspect::childSelected(const AbstractAspect* aspect) { |
| 1106 | // forward the signal to the highest possible level in the parent-child hierarchy |
no outgoing calls
no test coverage detected