summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rtlfmradiotunercontrol.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/rtlfmradiotunercontrol.cpp b/rtlfmradiotunercontrol.cpp
index 1fdf8d3..99054ac 100644
--- a/rtlfmradiotunercontrol.cpp
+++ b/rtlfmradiotunercontrol.cpp
@@ -357,6 +357,7 @@ void RtlFmRadioTunerControl::start()
//rtl_fm_stop();
rtl_fm_start();
d->state = QRadioTuner::ActiveState;
+ emit stateChanged(d->state);
qDebug() << "RtlFmRadioTunerControl::start - exit\n";
}
@@ -373,6 +374,7 @@ void RtlFmRadioTunerControl::stop()
rtl_fm_stop();
d->state = QRadioTuner::StoppedState;
+ emit stateChanged(d->state);
qDebug() << "RtlFmRadioTunerControl::stop - exit\n";
}