summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2019-04-03 11:06:15 -0400
committerGravatar Lioncash2019-04-03 11:15:54 -0400
commita504bad3fbcac6c8349ffa6074231ca6a51ed478 (patch)
treed2b182edc6aeb945e7092512bd5b9d1ecbe83f49
parentMerge pull request #2270 from lioncash/plist (diff)
downloadyuzu-a504bad3fbcac6c8349ffa6074231ca6a51ed478.tar.gz
yuzu-a504bad3fbcac6c8349ffa6074231ca6a51ed478.tar.xz
yuzu-a504bad3fbcac6c8349ffa6074231ca6a51ed478.zip
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.cpp5
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)
58 58
59 scroll_area = new QScrollArea; 59 scroll_area = new QScrollArea;
60 60
61 buttons = new QDialogButtonBox; 61 buttons = new QDialogButtonBox(QDialogButtonBox::Cancel | QDialogButtonBox::Ok);
62 buttons->addButton(tr("Cancel"), QDialogButtonBox::RejectRole);
63 buttons->addButton(tr("OK"), QDialogButtonBox::AcceptRole);
64
65 connect(buttons, &QDialogButtonBox::accepted, this, &QtProfileSelectionDialog::accept); 62 connect(buttons, &QDialogButtonBox::accepted, this, &QtProfileSelectionDialog::accept);
66 connect(buttons, &QDialogButtonBox::rejected, this, &QtProfileSelectionDialog::reject); 63 connect(buttons, &QDialogButtonBox::rejected, this, &QtProfileSelectionDialog::reject);
67 64