From 8fce78473fae17d52803a8a09e79b774b7fc32bc Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Tue, 20 Nov 2018 23:47:29 +0000 Subject: [PATCH] Switch to .cbr as the default Cabrillo file extension Should help to avoid accidents with other .log extension files in the WSJT-X log files directory. --- widgets/ExportCabrillo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/ExportCabrillo.cpp b/widgets/ExportCabrillo.cpp index 928a60dc9..0e61f0f08 100644 --- a/widgets/ExportCabrillo.cpp +++ b/widgets/ExportCabrillo.cpp @@ -76,7 +76,7 @@ void ExportCabrillo::save_log () auto fname = QFileDialog::getSaveFileName (this , tr ("Save Log File") , configuration_->writeable_data_dir ().absolutePath () - , tr ("Cabrillo Log (*.log)")); + , tr ("Cabrillo Log (*.cbr)")); if (fname.size ()) { QFile f {fname};