mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-17 08:01:13 +02:00
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:
@@ -43,7 +43,7 @@ ListReplicators::ListReplicators(QWidget *parent)
|
||||
//
|
||||
list_add_button=new QPushButton(this);
|
||||
list_add_button->setFont(buttonFont());
|
||||
list_add_button->setText(tr("&Add"));
|
||||
list_add_button->setText(tr("Add"));
|
||||
connect(list_add_button,SIGNAL(clicked()),this,SLOT(addData()));
|
||||
|
||||
//
|
||||
@@ -51,7 +51,7 @@ ListReplicators::ListReplicators(QWidget *parent)
|
||||
//
|
||||
list_edit_button=new QPushButton(this);
|
||||
list_edit_button->setFont(buttonFont());
|
||||
list_edit_button->setText(tr("&Edit"));
|
||||
list_edit_button->setText(tr("Edit"));
|
||||
connect(list_edit_button,SIGNAL(clicked()),this,SLOT(editData()));
|
||||
|
||||
//
|
||||
@@ -59,7 +59,7 @@ ListReplicators::ListReplicators(QWidget *parent)
|
||||
//
|
||||
list_delete_button=new QPushButton(this);
|
||||
list_delete_button->setFont(buttonFont());
|
||||
list_delete_button->setText(tr("&Delete"));
|
||||
list_delete_button->setText(tr("Delete"));
|
||||
connect(list_delete_button,SIGNAL(clicked()),this,SLOT(deleteData()));
|
||||
|
||||
//
|
||||
@@ -67,7 +67,7 @@ ListReplicators::ListReplicators(QWidget *parent)
|
||||
//
|
||||
list_list_button=new QPushButton(this);
|
||||
list_list_button->setFont(buttonFont());
|
||||
list_list_button->setText(tr("&List\nCarts"));
|
||||
list_list_button->setText(tr("List\nCarts"));
|
||||
connect(list_list_button,SIGNAL(clicked()),this,SLOT(listData()));
|
||||
|
||||
//
|
||||
@@ -76,7 +76,7 @@ ListReplicators::ListReplicators(QWidget *parent)
|
||||
list_close_button=new QPushButton(this);
|
||||
list_close_button->setDefault(true);
|
||||
list_close_button->setFont(buttonFont());
|
||||
list_close_button->setText(tr("&Close"));
|
||||
list_close_button->setText(tr("Close"));
|
||||
connect(list_close_button,SIGNAL(clicked()),this,SLOT(closeData()));
|
||||
|
||||
//
|
||||
@@ -87,7 +87,7 @@ ListReplicators::ListReplicators(QWidget *parent)
|
||||
list_replicators_model->setFont(defaultFont());
|
||||
list_replicators_model->setPalette(palette());
|
||||
list_replicators_view->setModel(list_replicators_model);
|
||||
list_replicators_label=new QLabel(tr("&Replicators:"),this);
|
||||
list_replicators_label=new QLabel(tr("Replicators:"),this);
|
||||
list_replicators_label->setFont(labelFont());
|
||||
connect(list_replicators_view,SIGNAL(doubleClicked(const QModelIndex &)),
|
||||
this,SLOT(doubleClickedData(const QModelIndex &)));
|
||||
|
Reference in New Issue
Block a user