| 43 | } |
| 44 | |
| 45 | void SessionsGraph::RootInit() |
| 46 | { |
| 47 | this->rootItem = new GraphItem( this, nullptr ); |
| 48 | this->graphScene->addItem( rootItem ); |
| 49 | |
| 50 | this->items.push_back( rootItem ); |
| 51 | } |
| 52 | |
| 53 | bool SessionsGraph::IsRootItem(const GraphItem *item) const |
| 54 | { |
no test coverage detected