SLOTs for changes triggered in BoxPlot general
| 583 | //************************************************************* |
| 584 | // general |
| 585 | void BoxPlotDock::plotDescriptionChanged(const AbstractAspect* aspect) { |
| 586 | if (m_boxPlot != aspect) |
| 587 | return; |
| 588 | |
| 589 | CONDITIONAL_LOCK_RETURN; |
| 590 | if (aspect->name() != ui.leName->text()) |
| 591 | ui.leName->setText(aspect->name()); |
| 592 | else if (aspect->comment() != ui.teComment->text()) |
| 593 | ui.teComment->setText(aspect->comment()); |
| 594 | } |
| 595 | void BoxPlotDock::plotDataColumnsChanged(const QVector<const AbstractColumn*>&) { |
| 596 | CONDITIONAL_LOCK_RETURN; |
| 597 | loadDataColumns(); |