| 321 | } |
| 322 | |
| 323 | void MessageBox::critical(QWidget* parent, const QString& title, const QString& text) { |
| 324 | MessageBox dlg(parent); |
| 325 | dlg.setTitle(title); |
| 326 | dlg.setText(text); |
| 327 | dlg.addButton(tr("OK"), kPrimaryRole); |
| 328 | dlg.exec(); |
| 329 | } |
| 330 | |
| 331 | int MessageBox::question( |
| 332 | QWidget* parent, const QString& title, const QString& text, std::initializer_list<ButtonSpec> buttons, |