| 4 | #include <QApplication> |
| 5 | |
| 6 | QMessageBox::StandardButton WizMessageBox::critical(QWidget* parent, const QString& title, |
| 7 | const QString& text, QMessageBox::StandardButtons buttons, |
| 8 | QMessageBox::StandardButton defaultButton) |
| 9 | { |
| 10 | return messageBox(parent, title, text, buttons, defaultButton, QMessageBox::Critical); |
| 11 | } |
| 12 | |
| 13 | QMessageBox::StandardButton WizMessageBox::information(QWidget* parent, const QString& title, |
| 14 | const QString& text, QMessageBox::StandardButtons buttons, |
no outgoing calls
no test coverage detected