| 608 | // ############################################################################## |
| 609 | |
| 610 | void BoxPlot::dataColumnAboutToBeRemoved(const AbstractAspect* aspect) { |
| 611 | Q_D(BoxPlot); |
| 612 | for (int i = 0; i < d->dataColumns.size(); ++i) { |
| 613 | if (aspect == d->dataColumns.at(i)) { |
| 614 | d->dataColumns[i] = nullptr; |
| 615 | d->retransform(); |
| 616 | Q_EMIT dataChanged(); |
| 617 | Q_EMIT changed(); |
| 618 | break; |
| 619 | } |
| 620 | } |
| 621 | } |
| 622 | |
| 623 | // ############################################################################## |
| 624 | // ###### SLOTs for changes triggered via QActions in the context menu ######## |
nothing calls this directly
no test coverage detected