Fix the truncation of characters 17 and 18 in decoded messages.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3158 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2013-04-11 22:53:30 +00:00
parent 6cd932fada
commit 1fc57214ca
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -1239,7 +1239,7 @@ void MainWindow::readFromStdout() //readFromStdout
bool bQSO=abs(t.mid(22,4).toInt() - g_pWideGraph->QSOfreq()) < 10;
QString t1=t.mid(0,5) + t.mid(10,4) + t.mid(15,5) + t.mid(22,4) +
t.mid(32);
t1=t1.replace("\n","").mid(0,t1.length()-4);
t1=t1.replace("\n","").mid(0,t1.length()-2);
QString s = "<table border=0 cellspacing=0 width=100%><tr><td bgcolor=\"" +
bg + "\"><pre>" + t1 + "</pre></td></tr></table>";
if(bQSO) {