| 64 | } |
| 65 | |
| 66 | void YACReaderSpinSliderWidget::setValue(int value) |
| 67 | { |
| 68 | disconnect(spinBox, QOverload<int>::of(&QSpinBox::valueChanged), this, &YACReaderSpinSliderWidget::setValue); |
| 69 | spinBox->setValue(value); |
| 70 | connect(spinBox, QOverload<int>::of(&QSpinBox::valueChanged), this, &YACReaderSpinSliderWidget::valueWillChange); |
| 71 | } |
| 72 | |
| 73 | void YACReaderSpinSliderWidget::setText(const QString &text) |
| 74 | { |
no outgoing calls
no test coverage detected