| 403 | } |
| 404 | |
| 405 | void XYSmoothCurveDock::recalculateClicked() { |
| 406 | for (auto* curve : m_curvesList) |
| 407 | static_cast<XYSmoothCurve*>(curve)->setSmoothData(m_smoothData); |
| 408 | |
| 409 | uiGeneralTab.pbRecalculate->setEnabled(false); |
| 410 | Q_EMIT info(i18n("Smoothing status: %1", m_smoothCurve->result().status)); |
| 411 | } |
| 412 | |
| 413 | /*! |
| 414 | * show the result and details of the smooth |
nothing calls this directly
no test coverage detected