| 787 | } |
| 788 | |
| 789 | void |
| 790 | TimeWindow::startSampling(void) |
| 791 | { |
| 792 | WaveSampler *ws = this->samplerDialog->makeSampler(); |
| 793 | |
| 794 | connect( |
| 795 | ws, |
| 796 | SIGNAL(data(SigDigger::WaveSampleSet)), |
| 797 | this, |
| 798 | SLOT(onSampleSet(SigDigger::WaveSampleSet))); |
| 799 | |
| 800 | this->notifyTaskRunning(true); |
| 801 | this->taskController.process(QStringLiteral("triggerSampler"), ws); |
| 802 | } |
| 803 | |
| 804 | void |
| 805 | TimeWindow::refreshMeasures(void) |
no test coverage detected