diff options
| author | Alexander Lohnau <[email protected]> | 2021-11-11 20:27:47 +0100 |
|---|---|---|
| committer | Alexander Lohnau <[email protected]> | 2021-12-13 08:35:26 +0000 |
| commit | fd717b88faab656205c2b5712959f9fd48e433a5 (patch) | |
| tree | 97d3ade2f67949c29dfc2c3473dcf27a40d4517a /src/search/dolphinfacetswidget.cpp | |
| parent | 432c7765997cb987362329d41c5bd67e734ca51d (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/search/dolphinfacetswidget.cpp')
| -rw-r--r-- | src/search/dolphinfacetswidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/search/dolphinfacetswidget.cpp b/src/search/dolphinfacetswidget.cpp index db53d595f..cc125a2d9 100644 --- a/src/search/dolphinfacetswidget.cpp +++ b/src/search/dolphinfacetswidget.cpp @@ -235,7 +235,7 @@ void DolphinFacetsWidget::initComboBox(QComboBox* combo) combo->setFrame(false); combo->setMinimumHeight(parentWidget()->height()); combo->setCurrentIndex(0); - connect(combo, QOverload<int>::of(&QComboBox::activated), this, &DolphinFacetsWidget::facetChanged); + connect(combo, &QComboBox::activated, this, &DolphinFacetsWidget::facetChanged); } void DolphinFacetsWidget::updateTagsSelector() |
