| 111 | return QMessageBox::NoButton; |
| 112 | } |
| 113 | int question(QWidget* parent, |
| 114 | const QString& title, const QString& text, |
| 115 | int buttons = QMessageBox::Ok, |
| 116 | int defaultButton = QMessageBox::NoButton) override { |
| 117 | Q_UNUSED(parent); |
| 118 | Q_UNUSED(title); |
| 119 | Q_UNUSED(text); |
| 120 | Q_UNUSED(buttons); |
| 121 | Q_UNUSED(defaultButton); |
| 122 | return QMessageBox::NoButton; |
| 123 | } |
| 124 | int warning(QWidget* parent, |
| 125 | const QString& title, const QString& text, |
| 126 | int buttons = QMessageBox::Ok, |