Use attribute instead of comment
This commit is contained in:
parent
190a053987
commit
46e8c38395
1 changed files with 2 additions and 2 deletions
|
@ -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 a new issue