diff options
author | Lioncash <mathew1800@gmail.com> | 2019-04-03 11:06:15 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-04-03 11:15:54 -0400 |
commit | a504bad3fbcac6c8349ffa6074231ca6a51ed478 (patch) | |
tree | d2b182edc6aeb945e7092512bd5b9d1ecbe83f49 | |
parent | e796351a0de70d75993e326b8828229416216d91 (diff) |
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.
-rw-r--r-- | src/yuzu/applets/profile_select.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/yuzu/applets/profile_select.cpp b/src/yuzu/applets/profile_select.cpp index 730426c16..f95f7fe3c 100644 --- a/src/yuzu/applets/profile_select.cpp +++ b/src/yuzu/applets/profile_select.cpp @@ -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); |