mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2026-06-01 21:45:00 -04:00
Add labels for Band Changes, Rate, and Score to the ActiveStations window.
This commit is contained in:
@@ -103,3 +103,18 @@ void ActiveStations::on_cbReadyOnly_toggled(bool b)
|
||||
m_bReadyOnly=b;
|
||||
emit activeStationsDisplay();
|
||||
}
|
||||
|
||||
void ActiveStations::setRate(int n)
|
||||
{
|
||||
ui->rate->setText(QString::number(n));
|
||||
}
|
||||
|
||||
void ActiveStations::setScore(int n)
|
||||
{
|
||||
ui->score->setText(QString::number(n));
|
||||
}
|
||||
|
||||
void ActiveStations::setBandChanges(int n)
|
||||
{
|
||||
ui->bandChanges->setText(QString::number(n));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user