┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/settings/trash
diff options
context:
space:
mode:
authorAlexander Lohnau <[email protected]>2021-11-11 20:27:47 +0100
committerAlexander Lohnau <[email protected]>2021-12-13 08:35:26 +0000
commitfd717b88faab656205c2b5712959f9fd48e433a5 (patch)
tree97d3ade2f67949c29dfc2c3473dcf27a40d4517a /src/settings/trash
parent432c7765997cb987362329d41c5bd67e734ca51d (diff)
Drop now unneeded QOverload statements
By defining the KF_DISABLE_DEPRECATED_BEFORE_AND_AT and QT_DISABLE_DEPRECATED_BEFOREvalues, the deprecated overloads are hidden. This way we only have the un-deprecated one visible.
Diffstat (limited to 'src/settings/trash')
-rw-r--r--src/settings/trash/trashsettingspage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/settings/trash/trashsettingspage.cpp b/src/settings/trash/trashsettingspage.cpp
index a2e54531e..048ee0e9a 100644
--- a/src/settings/trash/trashsettingspage.cpp
+++ b/src/settings/trash/trashsettingspage.cpp
@@ -20,7 +20,7 @@ TrashSettingsPage::TrashSettingsPage(QWidget* parent) :
loadSettings();
- connect(m_proxy, QOverload<bool>::of(&KCModuleProxy::changed), this, &TrashSettingsPage::changed);
+ connect(m_proxy, &KCModuleProxy::changed, this, &TrashSettingsPage::changed);
}
TrashSettingsPage::~TrashSettingsPage()