comparison view/View.cpp @ 1566:1f80a514ce29

Merge from branch spectrogram-export
author Chris Cannam
date Fri, 10 Jan 2020 14:54:27 +0000
parents 27f3e64489e1
children f12c25651f96
comparison
equal deleted inserted replaced
1553:76e4302a3fc2 1566:1f80a514ce29
860 860
861 ProgressBarRec pbr; 861 ProgressBarRec pbr;
862 pbr.cancel = cancel; 862 pbr.cancel = cancel;
863 pbr.bar = pb; 863 pbr.bar = pb;
864 pbr.lastStallCheckValue = 0; 864 pbr.lastStallCheckValue = 0;
865 pbr.stallCheckTimer = new QTimer(); 865 pbr.stallCheckTimer = new QTimer(this);
866 connect(pbr.stallCheckTimer, SIGNAL(timeout()), this, 866 connect(pbr.stallCheckTimer, SIGNAL(timeout()), this,
867 SLOT(progressCheckStalledTimerElapsed())); 867 SLOT(progressCheckStalledTimerElapsed()));
868 868
869 m_progressBars[layer] = pbr; 869 m_progressBars[layer] = pbr;
870 870