Performing some minimal code cleanup

This commit is contained in:
Jordan Sherer 2018-12-27 10:04:46 -05:00
parent 4064c70c26
commit 1a8d02fc89
3 changed files with 5 additions and 6 deletions

View File

@ -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.

View File

@ -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
//

View File

@ -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;
}
}