mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-02-03 09:44:24 -05:00
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:
parent
ec7e099cf8
commit
344936a315
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user