From ca8f9b672b3d8da3e2974802e89f6c6b6e23d99e Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Mon, 28 Apr 2025 22:02:56 +0200 Subject: Source: Remove redundant lambda parameter lists --- Source/Core/DolphinQt/Config/ConfigControls/ConfigInteger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/DolphinQt/Config/ConfigControls/ConfigInteger.cpp') diff --git a/Source/Core/DolphinQt/Config/ConfigControls/ConfigInteger.cpp b/Source/Core/DolphinQt/Config/ConfigControls/ConfigInteger.cpp index a81bfd7aed..5246de60f5 100644 --- a/Source/Core/DolphinQt/Config/ConfigControls/ConfigInteger.cpp +++ b/Source/Core/DolphinQt/Config/ConfigControls/ConfigInteger.cpp @@ -33,7 +33,7 @@ void ConfigInteger::OnConfigChanged() ConfigIntegerLabel::ConfigIntegerLabel(const QString& text, ConfigInteger* widget) : QLabel(text), m_widget(QPointer(widget)) { - connect(&Settings::Instance(), &Settings::ConfigChanged, this, [this]() { + connect(&Settings::Instance(), &Settings::ConfigChanged, this, [this] { // Label shares font changes with ConfigInteger to mark game ini settings. if (m_widget) setFont(m_widget->font()); -- cgit v1.2.3