! Selects or deselects the worksheet in the project explorer. This function is called in \c WorksheetView. The worksheet gets deselected if there are selected items in the view, and selected if there are no selected items in the view. */
| 501 | and selected if there are no selected items in the view. |
| 502 | */ |
| 503 | void Worksheet::setSelectedInView(const bool b) { |
| 504 | if (b) |
| 505 | Q_EMIT childAspectSelectedInView(this); |
| 506 | else |
| 507 | Q_EMIT childAspectDeselectedInView(this); |
| 508 | } |
| 509 | |
| 510 | void Worksheet::deleteAspectFromGraphicsItem(const QGraphicsItem* item) { |
| 511 | Q_ASSERT(item); |
no outgoing calls
no test coverage detected