mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-22 12:08:43 -04:00
Remove a bunch of commented-out qDebug() statements.
This commit is contained in:
parent
9babd4616b
commit
d155abe274
@ -407,11 +407,6 @@ void MainWindow::dataSink(int k)
|
||||
if(ihsym==330) bCallDecoder=true;
|
||||
if(ihsym==ihsym0) bCallDecoder=false;
|
||||
|
||||
// if((ihsym!=ihsym0+1) or (qAbs(ihsym-200)<3) or (qAbs(ihsym-330)<3) or (qAbs(ihsym-390)<3)) {
|
||||
// qDebug() << "aa" << ihsym0 << ihsym << m_n60
|
||||
// << bCallDecoder << 0.001*(QDateTime::currentMSecsSinceEpoch()%60000);
|
||||
// }
|
||||
|
||||
ihsym0=ihsym;
|
||||
if(bCallDecoder) {
|
||||
if(ihsym==m_hsymStop) m_decode_called=true;
|
||||
@ -744,7 +739,6 @@ void MainWindow::diskDat(int iret) //diskDat()
|
||||
|
||||
void MainWindow::decoderFinished()
|
||||
{
|
||||
// qDebug() << "ee" << "decoder finished" << 0.001*(QDateTime::currentMSecsSinceEpoch()%60000);
|
||||
m_startAnother=m_loopall;
|
||||
decodes_.nQDecoderDone=1;
|
||||
if(m_diskData) decodes_.nQDecoderDone=2;
|
||||
@ -846,8 +840,6 @@ void MainWindow::freezeDecode(int n) //freezeDecode()
|
||||
|
||||
void MainWindow::decode() //decode()
|
||||
{
|
||||
// qDebug() << "bb" << "decoder called" << m_decoderBusy
|
||||
// << 0.001*(QDateTime::currentMSecsSinceEpoch()%60000);
|
||||
if(m_decoderBusy) {
|
||||
return; //Don't attempt decode if decoder already busy
|
||||
}
|
||||
@ -940,9 +932,6 @@ void MainWindow::decode() //decode()
|
||||
m_saveFileName=m_saveDir + "/" + m_dateTime + ".qm";
|
||||
}
|
||||
|
||||
// qDebug() << "cc" << m_n60 << datcom2_.nhsym << m_nTx30a << m_nTx30b
|
||||
// << 0.001*(QDateTime::currentMSecsSinceEpoch()%60000);
|
||||
|
||||
bool bSkipDecode=false;
|
||||
//No need to call decoder for first half, if we transmitted in the first half:
|
||||
if((datcom2_.nhsym<=200) and (m_nTx30a>5)) bSkipDecode=true;
|
||||
@ -962,7 +951,6 @@ void MainWindow::decode() //decode()
|
||||
memcpy(savecom_.revision, m_revision.toLatin1(), len2);
|
||||
memcpy(savecom_.saveFileName, m_saveFileName.toLatin1(),len1);
|
||||
|
||||
// qDebug() << "dd" << "starting q65c()" << 0.001*(QDateTime::currentMSecsSinceEpoch()%60000);
|
||||
watcher3.setFuture(QtConcurrent::run (q65c_));
|
||||
decodeBusy(true);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user