| 85 | } |
| 86 | |
| 87 | TOPPASEdge::~TOPPASEdge() |
| 88 | { |
| 89 | // notify our childs that we are dying ;) |
| 90 | emit somethingHasChanged(); |
| 91 | |
| 92 | if (from_) |
| 93 | { |
| 94 | from_->removeOutEdge(this); |
| 95 | disconnect(from_, SIGNAL(somethingHasChanged()), this, SLOT(sourceHasChanged())); |
| 96 | } |
| 97 | if (to_) |
| 98 | { |
| 99 | to_->removeInEdge(this); |
| 100 | disconnect(this, SIGNAL(somethingHasChanged()), to_, SLOT(inEdgeHasChanged())); |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | QRectF TOPPASEdge::boundingRect() const |
| 105 | { |
nothing calls this directly
no test coverage detected