slot
| 82 | |
| 83 | // slot |
| 84 | void MainWidget::addPointsButtonClicked() |
| 85 | { |
| 86 | int idx = m_addPointsButtons.indexOf(qobject_cast<QPushButton *>(sender())); |
| 87 | Q_ASSERT(idx >= 0); |
| 88 | m_model.appendPoints(pow(qreal(10), qreal(idx + 3))); |
| 89 | } |
nothing calls this directly
no test coverage detected