yuzu/debugger/graphics/graphics_breakpoints: Specify string conversions explicitly

Allows the graphics breakpoints to compile with implicit string
conversions disabled.
This commit is contained in:
Lioncash 2019-05-19 01:02:38 -04:00
parent cad4f2ed29
commit d77d1a0207

View file

@ -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"));