2021-03-08 Fred Gleason <fredg@paravelsystems.com>

* Removed Qt3-style accelerators from rdadmin(1).
	* Removed Qt3-style accelerators from rdairplay(1).
	* Removed Qt3-style accelerators from rdcastmanager(1).
	* Removed Qt3-style accelerators from rdcatch(1).
	* Removed Qt3-style accelerators from rdlibrary(1).
	* Removed Qt3-style accelerators from rdlogedit(1).
	* Removed Qt3-style accelerators from rdlogin(1).
	* Removed Qt3-style accelerators from rdlogmanager(1).
	* Removed Qt3-style accelerators from rdselect(1).
	* Removed Qt3-style accelerators from rddbconfig(8).

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2021-03-08 15:50:26 -05:00
parent 7ed7218b20
commit 7208b5758e
179 changed files with 14765 additions and 5394 deletions

View File

@@ -121,7 +121,7 @@ InfoDialog::InfoDialog(QWidget *parent)
QPushButton *button=new QPushButton(this);
button->setGeometry(sizeHint().width()/2-145,174,80,50);
button->setFont(buttonFont());
button->setText(tr("View\n&Credits"));
button->setText(tr("View\nCredits"));
connect(button,SIGNAL(clicked()),this,SLOT(viewCreditsData()));
//
@@ -130,7 +130,7 @@ InfoDialog::InfoDialog(QWidget *parent)
button=new QPushButton(this);
button->setGeometry(sizeHint().width()/2-45,174,80,50);
button->setFont(buttonFont());
button->setText(tr("View\n&License"));
button->setText(tr("View\nLicense"));
connect(button,SIGNAL(clicked()),this,SLOT(viewLicenseData()));
//
@@ -139,7 +139,7 @@ InfoDialog::InfoDialog(QWidget *parent)
button=new QPushButton(this);
button->setGeometry(sizeHint().width()-90,sizeHint().height()-90,80,50);
button->setFont(buttonFont());
button->setText(tr("&Close"));
button->setText(tr("Close"));
button->setDefault(true);
connect(button,SIGNAL(clicked()),this,SLOT(closeData()));
}