Changed log qso window save button to Add to Log

This commit is contained in:
Jordan Sherer 2019-07-16 17:46:08 -04:00
parent 5ba0ee48d2
commit 7a63002ccd

View File

@ -27,6 +27,11 @@ LogQSO::LogQSO(QString const& programTitle, QSettings * settings
ui->setupUi(this);
setWindowTitle(programTitle + " - Log QSO");
ui->grid->setValidator (new MaidenheadLocatorValidator {this});
auto b = ui->buttonBox->button(QDialogButtonBox::Save);
if(b){
b->setText("Add to Log");
}
}
LogQSO::~LogQSO ()