mirror of
https://github.com/citra-emu/citra.git
synced 2024-12-19 21:31:08 +00:00
Use attribute instead of comment
This commit is contained in:
parent
190a053987
commit
46e8c38395
@ -38,13 +38,13 @@ QtKeyboardDialog::QtKeyboardDialog(QWidget* parent, QtKeyboard* keyboard_)
|
|||||||
? tr(SWKBD_BUTTON_FORGOT)
|
? tr(SWKBD_BUTTON_FORGOT)
|
||||||
: QString::fromStdString(config.button_text[1]),
|
: QString::fromStdString(config.button_text[1]),
|
||||||
QDialogButtonBox::ButtonRole::HelpRole);
|
QDialogButtonBox::ButtonRole::HelpRole);
|
||||||
// fallthrough
|
[[fallthrough]];
|
||||||
case ButtonConfig::Dual:
|
case ButtonConfig::Dual:
|
||||||
buttons->addButton(config.button_text[0].empty()
|
buttons->addButton(config.button_text[0].empty()
|
||||||
? tr(SWKBD_BUTTON_CANCEL)
|
? tr(SWKBD_BUTTON_CANCEL)
|
||||||
: QString::fromStdString(config.button_text[0]),
|
: QString::fromStdString(config.button_text[0]),
|
||||||
QDialogButtonBox::ButtonRole::RejectRole);
|
QDialogButtonBox::ButtonRole::RejectRole);
|
||||||
// fallthrough
|
[[fallthrough]];
|
||||||
case ButtonConfig::Single:
|
case ButtonConfig::Single:
|
||||||
buttons->addButton(config.button_text[2].empty()
|
buttons->addButton(config.button_text[2].empty()
|
||||||
? tr(SWKBD_BUTTON_OKAY)
|
? tr(SWKBD_BUTTON_OKAY)
|
||||||
|
Loading…
Reference in New Issue
Block a user