diff --git a/mainwindow.cpp b/mainwindow.cpp index 1cf152e30..9f843e271 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -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(); } diff --git a/widegraph.cpp b/widegraph.cpp index d8315f671..25812e691 100644 --- a/widegraph.cpp +++ b/widegraph.cpp @@ -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\".");