From 7a63002ccd7ae14996b9ab8bef930d3d4244f6a9 Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Tue, 16 Jul 2019 17:46:08 -0400 Subject: [PATCH] Changed log qso window save button to Add to Log --- logqso.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/logqso.cpp b/logqso.cpp index 6df8687..1cd0731 100644 --- a/logqso.cpp +++ b/logqso.cpp @@ -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 ()