diff options
| author | Mat M <mathew1800@gmail.com> | 2019-03-04 17:40:27 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-04 17:40:27 -0500 |
| commit | 147f7ca3213aef22dfe45bfab86e2d221aa248bf (patch) | |
| tree | b32f19c11585ea4e1b205eb2e959e695636e5a19 /Source/Core/DolphinQt/Debugger/MemoryWidget.cpp | |
| parent | a59010fa29ab10ca031bea87fc5df165e70e2dff (diff) | |
| parent | 70da86f1c3c933ce28d122f95f34ff6c24f89d80 (diff) | |
Merge pull request #7849 from spycrab/qt_modal_again
Qt: Make every messagebox modal
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/MemoryWidget.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/MemoryWidget.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/Core/DolphinQt/Debugger/MemoryWidget.cpp b/Source/Core/DolphinQt/Debugger/MemoryWidget.cpp index 7cc88e8a23..4996560ae3 100644 --- a/Source/Core/DolphinQt/Debugger/MemoryWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/MemoryWidget.cpp @@ -11,7 +11,6 @@ #include <QHBoxLayout> #include <QLabel> #include <QLineEdit> -#include <QMessageBox> #include <QPushButton> #include <QRadioButton> #include <QScrollArea> @@ -27,6 +26,7 @@ #include "Core/HW/Memmap.h" #include "Core/PowerPC/PowerPC.h" #include "DolphinQt/Debugger/MemoryViewWidget.h" +#include "DolphinQt/QtUtils/ModalMessageBox.h" #include "DolphinQt/Settings.h" MemoryWidget::MemoryWidget(QWidget* parent) : QDockWidget(parent) @@ -399,13 +399,13 @@ void MemoryWidget::OnSetValue() if (!good_address) { - QMessageBox::critical(this, tr("Error"), tr("Bad address provided.")); + ModalMessageBox::critical(this, tr("Error"), tr("Bad address provided.")); return; } if (m_data_edit->text().isEmpty()) { - QMessageBox::critical(this, tr("Error"), tr("No value provided.")); + ModalMessageBox::critical(this, tr("Error"), tr("No value provided.")); return; } @@ -423,7 +423,7 @@ void MemoryWidget::OnSetValue() if (!good_value) { - QMessageBox::critical(this, tr("Error"), tr("Bad value provided.")); + ModalMessageBox::critical(this, tr("Error"), tr("Bad value provided.")); return; } @@ -455,7 +455,7 @@ static void DumpArray(const std::string& filename, const u8* data, size_t length if (!f) { - QMessageBox::critical( + ModalMessageBox::critical( nullptr, QObject::tr("Error"), QObject::tr("Failed to dump %1: Can't open file").arg(QString::fromStdString(filename))); return; @@ -463,9 +463,9 @@ static void DumpArray(const std::string& filename, const u8* data, size_t length if (!f.WriteBytes(data, length)) { - QMessageBox::critical(nullptr, QObject::tr("Error"), - QObject::tr("Failed to dump %1: Failed to write to file") - .arg(QString::fromStdString(filename))); + ModalMessageBox::critical(nullptr, QObject::tr("Error"), + QObject::tr("Failed to dump %1: Failed to write to file") + .arg(QString::fromStdString(filename))); } } |
