| 313 | } |
| 314 | |
| 315 | void MessageBox::warning(QWidget* parent, const QString& title, const QString& text) { |
| 316 | MessageBox dlg(parent); |
| 317 | dlg.setTitle(title); |
| 318 | dlg.setText(text); |
| 319 | dlg.addButton(tr("OK"), kPrimaryRole); |
| 320 | dlg.exec(); |
| 321 | } |
| 322 | |
| 323 | void MessageBox::critical(QWidget* parent, const QString& title, const QString& text) { |
| 324 | MessageBox dlg(parent); |