Просмотр исходного кода

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.
Lioncash 7 лет назад
Родитель
Сommit
a504bad3fb
1 измененных файлов с 1 добавлено и 4 удалено
  1. 1 4
      src/yuzu/applets/profile_select.cpp

+ 1 - 4
src/yuzu/applets/profile_select.cpp

@@ -58,10 +58,7 @@ QtProfileSelectionDialog::QtProfileSelectionDialog(QWidget* parent)
 
 
     scroll_area = new QScrollArea;
     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::accepted, this, &QtProfileSelectionDialog::accept);
     connect(buttons, &QDialogButtonBox::rejected, this, &QtProfileSelectionDialog::reject);
     connect(buttons, &QDialogButtonBox::rejected, this, &QtProfileSelectionDialog::reject);