Better checkbox labels in Active Stations window.

This commit is contained in:
Joe Taylor 2023-12-07 14:38:49 -05:00
parent 0d74918634
commit 57aca5c222
2 changed files with 4 additions and 4 deletions

View File

@ -47,7 +47,7 @@ void ActiveStations::read_settings ()
ui->sbMaxRecent->setValue(settings_->value("MaxRecent",10).toInt()); ui->sbMaxRecent->setValue(settings_->value("MaxRecent",10).toInt());
ui->sbMaxAge->setValue(settings_->value("MaxAge",10).toInt()); ui->sbMaxAge->setValue(settings_->value("MaxAge",10).toInt());
ui->cbReadyOnly->setChecked(settings_->value("ReadyOnly",false).toBool()); ui->cbReadyOnly->setChecked(settings_->value("ReadyOnly",false).toBool());
ui->cbWantedOnly->setChecked(settings_->value("WantedOnly",false).toBool()); ui->cbWantedOnly->setChecked(settings_->value("# WantedOnly",false).toBool());
} }
void ActiveStations::write_settings () void ActiveStations::write_settings ()
@ -68,7 +68,7 @@ void ActiveStations::displayRecentStations(QString mode, QString const& t)
if(m_mode=="Q65") { if(m_mode=="Q65") {
ui->header_label2->setText(" N Frx Fsked S/N Q65 Call Grid Tx Age"); ui->header_label2->setText(" N Frx Fsked S/N Q65 Call Grid Tx Age");
ui->label->setText("QSOs:"); ui->label->setText("QSOs:");
ui->cbReadyOnly->setText("CQ only"); ui->cbReadyOnly->setText("* CQ only");
} else if(m_mode=="Q65-pileup") { } else if(m_mode=="Q65-pileup") {
ui->header_label2->setText(" N Freq Call Grid El Age(h)"); ui->header_label2->setText(" N Freq Call Grid El Age(h)");
} else { } else {

View File

@ -82,7 +82,7 @@
<bool>false</bool> <bool>false</bool>
</property> </property>
<property name="text"> <property name="text">
<string>Wanted only</string> <string># Wanted only</string>
</property> </property>
</widget> </widget>
</item> </item>