Use attribute instead of comment

This commit is contained in:
zhupengfei 2020-05-31 10:47:46 +08:00
parent 190a053987
commit 46e8c38395
No known key found for this signature in database
GPG Key ID: DD129E108BD09378
1 changed files with 2 additions and 2 deletions

View File

@ -38,13 +38,13 @@ QtKeyboardDialog::QtKeyboardDialog(QWidget* parent, QtKeyboard* keyboard_)
? tr(SWKBD_BUTTON_FORGOT)
: QString::fromStdString(config.button_text[1]),
QDialogButtonBox::ButtonRole::HelpRole);
// fallthrough
[[fallthrough]];
case ButtonConfig::Dual:
buttons->addButton(config.button_text[0].empty()
? tr(SWKBD_BUTTON_CANCEL)
: QString::fromStdString(config.button_text[0]),
QDialogButtonBox::ButtonRole::RejectRole);
// fallthrough
[[fallthrough]];
case ButtonConfig::Single:
buttons->addButton(config.button_text[2].empty()
? tr(SWKBD_BUTTON_OKAY)