No need to truncate the decoded text line going to ALL.TXT.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7415 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2016-12-20 21:35:16 +00:00
parent ec7e099cf8
commit 344936a315

View File

@ -2372,8 +2372,9 @@ void MainWindow::writeAllTxt(QString message)
<< m_mode << endl;
m_RxLog=0;
}
int n=message.length();
out << message.mid(0,n-2) << endl;
// int n=message.length();
// out << message.mid(0,n-2) << endl;
out << message << endl;
f.close();
} else {
MessageBox::warning_message (this, tr ("File Open Error")