| 122 | return QMessageBox::NoButton; |
| 123 | } |
| 124 | int warning(QWidget* parent, |
| 125 | const QString& title, const QString& text, |
| 126 | int buttons = QMessageBox::Ok, |
| 127 | int defaultButton = QMessageBox::NoButton) override { |
| 128 | Q_UNUSED(parent); |
| 129 | Q_UNUSED(title); |
| 130 | Q_UNUSED(text); |
| 131 | Q_UNUSED(buttons); |
| 132 | Q_UNUSED(defaultButton); |
| 133 | return QMessageBox::NoButton; |
| 134 | } |
| 135 | int critical(QWidget* parent, |
| 136 | const QString& title, const QString& text, |
| 137 | int buttons = QMessageBox::Ok, |