Replace GROUPCALL with actual group calls

This commit is contained in:
Jordan Sherer
2018-10-27 10:09:40 -04:00
parent 47a7c06854
commit 121bb0fdb5
6 changed files with 33 additions and 37 deletions
-2
View File
@@ -179,7 +179,6 @@ quint16 nmaxgrid = (1<<15)-1;
QMap<QString, quint32> basecalls = {
{ "<....>", nbasecall + 1 }, // incomplete callsign
{ "ALLCALL", nbasecall + 2 },
{ "GROUPCALL", nbasecall + 3 },
};
QMap<quint32, QString> cqs = {
@@ -1652,7 +1651,6 @@ QStringList Varicode::buildMessageFrames(
bool lineStartsWithBaseCall = (
line.startsWith("ALLCALL") ||
line.startsWith("GROUPCALL") ||
line.startsWith("BEACON") ||
Varicode::startsWithCQ(line)
);