yuzu/applets/profile_select: Use QDialogButtonBox standard buttons instead of custom buttons

Makes for shorter code, while also not requiring the buttons to be
directly translated, they'll be handled by Qt itself.
merge-requests/60/head
Lioncash 2019-04-03 11:06:15 -04:00
parent e796351a0d
commit a504bad3fb
1 changed files with 1 additions and 4 deletions

View File

@ -58,10 +58,7 @@ QtProfileSelectionDialog::QtProfileSelectionDialog(QWidget* parent)
scroll_area = new QScrollArea;
buttons = new QDialogButtonBox;
buttons->addButton(tr("Cancel"), QDialogButtonBox::RejectRole);
buttons->addButton(tr("OK"), QDialogButtonBox::AcceptRole);
buttons = new QDialogButtonBox(QDialogButtonBox::Cancel | QDialogButtonBox::Ok);
connect(buttons, &QDialogButtonBox::accepted, this, &QtProfileSelectionDialog::accept);
connect(buttons, &QDialogButtonBox::rejected, this, &QtProfileSelectionDialog::reject);