diff --git a/Configuration.hpp b/Configuration.hpp index f7a3660..cd03a78 100644 --- a/Configuration.hpp +++ b/Configuration.hpp @@ -26,7 +26,7 @@ class QHostAddress; // Class Configuration // // Encapsulates the control, access and, persistence of user defined -// settings for the wsjtx GUI. Setting values are accessed through a +// settings for the GUI. Setting values are accessed through a // QDialog window containing concept orientated tab windows. // // Responsibilities @@ -37,7 +37,7 @@ class QHostAddress; // farmed out to a separate thread since many of the rig control // functions are blocking. // -// All user settings required by the wsjtx GUI are exposed through +// All user settings required by the GUI are exposed through // query methods. Settings only become visible once they have been // accepted by the user which is done by clicking the "OK" button on // the settings dialog. diff --git a/Transceiver.hpp b/Transceiver.hpp index 65b1908..39a12f8 100644 --- a/Transceiver.hpp +++ b/Transceiver.hpp @@ -11,8 +11,7 @@ class QString; // // Abstract Transceiver Interface // -// This is the minimal generic interface to a rig as required by -// wsjtx. +// This is the minimal generic interface to a rig. // // Responsibilities // diff --git a/mainwindow.cpp b/mainwindow.cpp index c56aea2..aa84b1b 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -3297,7 +3297,7 @@ void MainWindow::on_actionOpen_triggered() //Open File QString fname; fname=QFileDialog::getOpenFileName(this, "Open File", m_path, - "WSJT Files (*.wav)"); + "Audio Files (*.wav)"); if(!fname.isEmpty ()) { m_path=fname; int i1=fname.lastIndexOf("/"); @@ -8448,7 +8448,7 @@ void MainWindow::locationChange (QString const& location) grid = grid.mid (5).trimmed (); } else { - // TODO - support any other formats, e.g. latlong? Or have that conversion done external to wsjtx + // TODO - support any other formats, e.g. latlong? Or have that conversion done externally return; } }