2021-09-12 Fred Gleason <fredg@paravelsystems.com>

* Fixed regressions where vestigal accelerator indicators ('&')
	remained in in-line strings.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2021-09-12 14:17:07 -04:00
parent 604923d21e
commit f0d871c9da
20 changed files with 79 additions and 87 deletions

View File

@@ -2,7 +2,7 @@
//
// Get an Aggreggate Tuning Hours (ATH) Figure.
//
// (C) Copyright 2006-2019 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2006-2021 Fred Gleason <fredg@paravelsystems.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
@@ -18,10 +18,10 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
#include <qpushbutton.h>
#include <qlabel.h>
#include <qmessagebox.h>
#include <qvalidator.h>
#include <QLabel>
#include <QMessageBox>
#include <QPushButton>
#include <QValidator>
#include "rdget_ath.h"
@@ -68,7 +68,7 @@ RDGetAth::RDGetAth(double *ath,QWidget *parent)
ok_button->setGeometry(sizeHint().width()-180,sizeHint().height()-60,80,50);
ok_button->setDefault(true);
ok_button->setFont(buttonFont());
ok_button->setText(tr("&OK"));
ok_button->setText(tr("OK"));
connect(ok_button,SIGNAL(clicked()),this,SLOT(okData()));
//
@@ -78,7 +78,7 @@ RDGetAth::RDGetAth(double *ath,QWidget *parent)
cancel_button->
setGeometry(sizeHint().width()-90,sizeHint().height()-60,80,50);
cancel_button->setFont(buttonFont());
cancel_button->setText(tr("&Cancel"));
cancel_button->setText(tr("Cancel"));
connect(cancel_button,SIGNAL(clicked()),this,SLOT(cancelData()));
}