End lines in wsjtx_qrg.txt, wsjtx_txcall.txt, and wsjtx.log with CRLF.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3048 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2013-03-14 00:20:55 +00:00
parent 727bf12c75
commit 91d082f42f
2 changed files with 3 additions and 3 deletions

View File

@ -1617,7 +1617,7 @@ void MainWindow::on_dxCallEntry_textChanged(const QString &t) //dxCall changed
return;
}
QTextStream out(&f);
out << m_hisCall;
out << m_hisCall << "\r\n";
f.close();
}
@ -1651,7 +1651,7 @@ void MainWindow::on_logQSOButton_clicked() //Log QSO button
return;
}
QTextStream out(&f);
out << logEntry;
out << logEntry << "\r\n";
f.close();
}

View File

@ -56,7 +56,7 @@ WideGraph::WideGraph(QWidget *parent) :
QFile f("wsjtx_qrg.txt");
if(f.open(QFile::WriteOnly)) {
QTextStream out(&f);
out << m_dialFreq;
out << m_dialFreq << "\r\n";
f.close();
} else {
// msgBox("Cannot open file \"wsjtx_qrg.txt\".");