From 9c2ecdd4b8d0d35e933076450597cf5926b55f98 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Mon, 15 Oct 2018 13:45:02 -0400 Subject: [PATCH] Use mode designator DG rather than RY in the Cabrillo log, per ARRL request. --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 7b817509a..2dd38b7a2 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -5274,7 +5274,7 @@ void MainWindow::cabLog() int nfreq=m_freqNominal/1000; if(m_freqNominal>50000000) nfreq=m_freqNominal/1000000; QString t; - t.sprintf("QSO: %5d RY ",nfreq); + t.sprintf("QSO: %5d DG ",nfreq); t=t + QDateTime::currentDateTimeUtc().toString("yyyy-MM-dd hhmm ") + m_config.my_callsign().leftJustified(13,' ') + m_xSent.leftJustified(14,' ') + m_hisCall.leftJustified(13,' ') + m_xRcvd;