Fix up message generation when short messages are used and decoded.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6466 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor
2016-02-04 17:30:04 +00:00
parent 8ed7d54095
commit 6eb48bb6a4
2 changed files with 10 additions and 2 deletions
+1 -1
View File
@@ -133,7 +133,7 @@ void DecodedText::deCallAndGrid(/*out*/QString& call, QString& grid)
call = msg.mid(i1+1);
int i2 = call.indexOf(" ");
grid = call.mid(i2+1,4);
call = call.mid(0,i2);
call = call.mid(0,i2).replace(">","");
}
int DecodedText::timeInSeconds()