summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt2/Debugger/RegisterColumn.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2018-01-21 16:25:58 +0100
committerJosJuice <josjuice@gmail.com>2018-01-21 16:33:46 +0100
commit04b9310bb6364ccb334e3e577fe3c2bff18c1134 (patch)
tree009654757b292eac9c5c1cd24f260aeb88ab986d /Source/Core/DolphinQt2/Debugger/RegisterColumn.cpp
parent6a002a493812e451762bd3babbbd695760c28413 (diff)
Tweak Qt debugger strings to be more translation friendly
Diffstat (limited to 'Source/Core/DolphinQt2/Debugger/RegisterColumn.cpp')
-rw-r--r--Source/Core/DolphinQt2/Debugger/RegisterColumn.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/Source/Core/DolphinQt2/Debugger/RegisterColumn.cpp b/Source/Core/DolphinQt2/Debugger/RegisterColumn.cpp
index 5ec0e2597d..3b8810dbbb 100644
--- a/Source/Core/DolphinQt2/Debugger/RegisterColumn.cpp
+++ b/Source/Core/DolphinQt2/Debugger/RegisterColumn.cpp
@@ -83,14 +83,9 @@ void RegisterColumn::SetValue()
}
if (!valid)
- {
- QMessageBox::critical(nullptr, QObject::tr("Invalid input"),
- QObject::tr("Bad input for field"));
- }
+ QMessageBox::critical(nullptr, QObject::tr("Error"), QObject::tr("Invalid input provided"));
else
- {
m_set_register(value);
- }
RefreshValue();
}