MCPcopy Create free account
hub / github.com/KDE/labplot / plotDescriptionChanged

Method plotDescriptionChanged

src/frontend/dockwidgets/BoxPlotDock.cpp:585–594  ·  view source on GitHub ↗

SLOTs for changes triggered in BoxPlot general

Source from the content-addressed store, hash-verified

583//*************************************************************
584// general
585void 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}
595void BoxPlotDock::plotDataColumnsChanged(const QVector<const AbstractColumn*>&) {
596 CONDITIONAL_LOCK_RETURN;
597 loadDataColumns();

Callers

nothing calls this directly

Calls 4

commentMethod · 0.80
nameMethod · 0.45
textMethod · 0.45
setTextMethod · 0.45

Tested by

no test coverage detected