From de49b5d2458d2dbb3baa9e1e3361e6d661875c1a Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Thu, 6 Jun 2013 18:02:10 +0000 Subject: [PATCH] Restore the (mistakenly removed) change from logging DialFreq to DiapFreq + TxFreq. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3346 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 6ce647246..da62b1356 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -2362,8 +2362,8 @@ void MainWindow::on_logQSOButton_clicked() //Log QSO button logDlg->m_txPower=m_txPower; logDlg->m_comments=m_logComments; logDlg->initLogQSO(m_hisCall,m_hisGrid,m_mode,m_rptSent,m_rptRcvd, - m_dateTimeQSO,m_dialFreq,m_myCall,m_myGrid, - m_noSuffix,m_toRTTY,m_dBtoComments); + m_dateTimeQSO,m_dialFreq+m_txFreq/1.0e6, + m_myCall,m_myGrid,m_noSuffix,m_toRTTY,m_dBtoComments); connect(logDlg, SIGNAL(acceptQSO(bool)),this,SLOT(acceptQSO2(bool))); if(m_logQSOgeom != QRect(500,400,424,283)) logDlg->setGeometry(m_logQSOgeom); logDlg->show();