From 87330ae524dfabf323ff66aed599ea65deeb6950 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Mon, 8 Jun 2020 12:19:10 +0200 Subject: DolphinQt: Use QFontMetrics::boundingRect instead of QFontMetrics::width See https://kdepepo.wordpress.com/2019/08/05/about-deprecation-of-qfontmetricswidth/ --- Source/Core/DolphinQt/Debugger/ThreadWidget.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Source/Core/DolphinQt/Debugger/ThreadWidget.cpp') diff --git a/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp b/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp index d222e89942..18bb7af3fb 100644 --- a/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp @@ -17,7 +17,6 @@ #include "Core/PowerPC/MMU.h" #include "Core/PowerPC/PowerPC.h" #include "DolphinQt/Host.h" -#include "DolphinQt/QtUtils/FontMetricsHelper.h" #include "DolphinQt/Settings.h" ThreadWidget::ThreadWidget(QWidget* parent) : QDockWidget(parent) @@ -135,7 +134,7 @@ QLineEdit* ThreadWidget::CreateLineEdit() const QLineEdit* line_edit = new QLineEdit(QLatin1Literal("00000000")); line_edit->setReadOnly(true); line_edit->setFixedWidth( - FontMetricsWidth(line_edit->fontMetrics(), QLatin1Literal(" 00000000 "))); + line_edit->fontMetrics().boundingRect(QLatin1Literal(" 00000000 ")).width()); return line_edit; } -- cgit v1.2.3