summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/Config/ConfigControls/ConfigInteger.cpp
diff options
context:
space:
mode:
authorTilka <tilkax@gmail.com>2023-11-12 19:43:05 +0000
committerGitHub <noreply@github.com>2023-11-12 19:43:05 +0000
commit166423ad616d52e0f4ae209016b6cc5ec278d283 (patch)
tree23d91e4e3fc87fb918b699d8b8fd8208e4a793ea /Source/Core/DolphinQt/Config/ConfigControls/ConfigInteger.cpp
parent4b385603237c453d541f50fb7ddff2d88c0c88b3 (diff)
parent43e69d3e6ab699d2ae09dab377e11651e799f995 (diff)
Merge pull request #12273 from Dentomologist/dolphinqt_remove_unnecessary_qoverloads
DolphinQt: Remove unnecessary qOverloads
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 3e5ade08a2..c8c3e5074a 100644
--- a/Source/Core/DolphinQt/Config/ConfigControls/ConfigInteger.cpp
+++ b/Source/Core/DolphinQt/Config/ConfigControls/ConfigInteger.cpp
@@ -18,7 +18,7 @@ ConfigInteger::ConfigInteger(int minimum, int maximum, const Config::Info<int>&
setValue(Config::Get(setting));
- connect(this, qOverload<int>(&ConfigInteger::valueChanged), this, &ConfigInteger::Update);
+ connect(this, &ConfigInteger::valueChanged, this, &ConfigInteger::Update);
connect(&Settings::Instance(), &Settings::ConfigChanged, this, [this] {
QFont bf = font();
bf.setBold(Config::GetActiveLayerForConfig(m_setting) != Config::LayerType::Base);