Code cleanup

This commit is contained in:
Jordan Sherer 2019-11-17 01:45:00 -05:00
parent 71d52dad63
commit d6e79ad902
2 changed files with 2 additions and 5 deletions

View File

@ -4991,8 +4991,6 @@ void MainWindow::readFromStdout(QProcess * proc) //r
#endif
}
// See MainWindow::postDecode for displaying the latest decodes
}
@ -5016,7 +5014,6 @@ bool MainWindow::hasExistingMessageBuffer(int submode, int offset, bool drift, i
return true;
}
int range = rxThreshold(submode);
QList<int> offsets = generateOffsets(offset-range, offset+range);

View File

@ -328,12 +328,12 @@ int dbmTomwatts(int dbm){
}
QString Varicode::escape(const QString &text){
// // TODO: support different escapes?
// TODO: support different escapes?
return text;
}
QString Varicode::unescape(const QString &text){
// // TODO: support different escapes?
// TODO: support different escapes?
return text;
}