summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-05-19 07:02:38 +0200
committerLioncash <mathew1800@gmail.com>2019-05-19 07:10:05 +0200
commitd77d1a02074c4319fe6360207e2c36758fe330dd (patch)
treece1f46faced27041a5ebf81bea6fd3ed93a5c4f4
parentyuzu/debugger/profiler: Specify string conversions explicitly (diff)
downloadyuzu-d77d1a02074c4319fe6360207e2c36758fe330dd.tar
yuzu-d77d1a02074c4319fe6360207e2c36758fe330dd.tar.gz
yuzu-d77d1a02074c4319fe6360207e2c36758fe330dd.tar.bz2
yuzu-d77d1a02074c4319fe6360207e2c36758fe330dd.tar.lz
yuzu-d77d1a02074c4319fe6360207e2c36758fe330dd.tar.xz
yuzu-d77d1a02074c4319fe6360207e2c36758fe330dd.tar.zst
yuzu-d77d1a02074c4319fe6360207e2c36758fe330dd.zip
-rw-r--r--src/yuzu/debugger/graphics/graphics_breakpoints.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/debugger/graphics/graphics_breakpoints.cpp b/src/yuzu/debugger/graphics/graphics_breakpoints.cpp
index 67ed0ba6d..1c80082a4 100644
--- a/src/yuzu/debugger/graphics/graphics_breakpoints.cpp
+++ b/src/yuzu/debugger/graphics/graphics_breakpoints.cpp
@@ -135,7 +135,7 @@ GraphicsBreakPointsWidget::GraphicsBreakPointsWidget(
std::shared_ptr<Tegra::DebugContext> debug_context, QWidget* parent)
: QDockWidget(tr("Maxwell Breakpoints"), parent), Tegra::DebugContext::BreakPointObserver(
debug_context) {
- setObjectName("TegraBreakPointsWidget");
+ setObjectName(QStringLiteral("TegraBreakPointsWidget"));
status_text = new QLabel(tr("Emulation running"));
resume_button = new QPushButton(tr("Resume"));