| 28 | const Component dummy; |
| 29 | |
| 30 | ComponentsNode::ComponentsNode(const QString& name) |
| 31 | : component(dummy) |
| 32 | , name(name) |
| 33 | , item(nullptr) |
| 34 | { |
| 35 | } |
| 36 | |
| 37 | ComponentsNode::ComponentsNode(const Component& component) |
| 38 | : component(component) |
nothing calls this directly
no test coverage detected