summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/Config/ConfigControls/ConfigInteger.cpp
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2025-06-14 03:49:47 -0500
committerGitHub <noreply@github.com>2025-06-14 03:49:47 -0500
commit2047eaf1d86839b53bb92cf79cfae8be2a568ed6 (patch)
treeb6dd8deb5f1bf6d110d71a73521a241d37c577b1 /Source/Core/DolphinQt/Config/ConfigControls/ConfigInteger.cpp
parent95f6c76713e6c2a6b50f1a149a7886e72fea6ec7 (diff)
parentca8f9b672b3d8da3e2974802e89f6c6b6e23d99e (diff)
Merge pull request #13671 from tygyh/Source/Remove-redundant-lambda-parameter-lists
Source: Remove redundant lambda parameter lists
Diffstat (limited to 'Source/Core/DolphinQt/Config/ConfigControls/ConfigInteger.cpp')
-rw-r--r--Source/Core/DolphinQt/Config/ConfigControls/ConfigInteger.cpp2
1 files changed, 1 insertions, 1 deletions
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<ConfigInteger>(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());