| 1285 | } |
| 1286 | |
| 1287 | void |
| 1288 | TimeWindow::onPeriodicDivisionsChanged(void) |
| 1289 | { |
| 1290 | this->ui->realWaveform->setDivsPerSelection( |
| 1291 | this->getPeriodicDivision()); |
| 1292 | this->ui->imagWaveform->setDivsPerSelection( |
| 1293 | this->getPeriodicDivision()); |
| 1294 | |
| 1295 | this->ui->realWaveform->invalidate(); |
| 1296 | this->ui->imagWaveform->invalidate(); |
| 1297 | |
| 1298 | this->refreshMeasures(); |
| 1299 | } |
| 1300 | |
| 1301 | |
| 1302 | void |
nothing calls this directly
no test coverage detected