1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

Use main window master timer for SSB demod spectrum and Channel Analyzer spectrum and scope

This commit is contained in:
f4exb
2015-08-01 04:07:09 +02:00
parent e6caa94593
commit 07f16bb176
6 changed files with 20 additions and 0 deletions
+8
View File
@@ -1435,3 +1435,11 @@ void GLScope::setTriggerPre(Real triggerPre)
{
m_triggerPre = triggerPre;
}
void GLScope::connectTimer(const QTimer& timer)
{
std::cerr << "GLScope::connectTimer" << std::endl;
disconnect(&m_timer, SIGNAL(timeout()), this, SLOT(tick()));
connect(&timer, SIGNAL(timeout()), this, SLOT(tick()));
m_timer.stop();
}