Try adding a lineEdit to display number of QSOs in the contest log. Not quite right, yet.

This commit is contained in:
Joe Taylor
2022-07-14 12:42:55 -04:00
parent fffc88de69
commit e1fde92ea2
6 changed files with 36 additions and 0 deletions
+7
View File
@@ -89,3 +89,10 @@ void CabrilloLogWindow::log_model_changed (int row)
m_->log_model_->select ();
}
}
void CabrilloLogWindow::set_nQSO(int n)
{
QString t;
t=t.asprintf("%d QSOs",n);
m_->ui_.nQSO_lineEdit->setText(t);
}