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 @@
//
// Slot Editor for RDCartSlots.
//
// (C) Copyright 2012-2019 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2012-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,17 +18,13 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
#include <qcolordialog.h>
//Added by qt3to4:
#include <QResizeEvent>
#include <QLabel>
#include <rddb.h>
#include <rdcart.h>
#include <rdcart_dialog.h>
#include <rd.h>
#include <rdconf.h>
#include "rddb.h"
#include "rdcart.h"
#include "rdcart_dialog.h"
#include "rd.h"
#include "rdconf.h"
#include "rdslotdialog.h"
RDSlotDialog::RDSlotDialog(const QString &caption,QWidget *parent)
@@ -88,7 +84,7 @@ RDSlotDialog::RDSlotDialog(const QString &caption,QWidget *parent)
edit_ok_button=new QPushButton(this);
edit_ok_button->setDefault(true);
edit_ok_button->setFont(buttonFont());
edit_ok_button->setText(tr("&OK"));
edit_ok_button->setText(tr("OK"));
connect(edit_ok_button,SIGNAL(clicked()),this,SLOT(okData()));
//
@@ -96,7 +92,7 @@ RDSlotDialog::RDSlotDialog(const QString &caption,QWidget *parent)
//
edit_cancel_button=new QPushButton(this);
edit_cancel_button->setFont(buttonFont());
edit_cancel_button->setText(tr("&Cancel"));
edit_cancel_button->setText(tr("Cancel"));
connect(edit_cancel_button,SIGNAL(clicked()),this,SLOT(cancelData()));
}