diff options
| author | Méven Car <[email protected]> | 2026-01-22 17:02:34 +0100 |
|---|---|---|
| committer | Méven Car <[email protected]> | 2026-01-22 17:03:09 +0100 |
| commit | 3b89b43f097342bc76ab7b235f9649077a87deff (patch) | |
| tree | fe41f01b4ca65e769d058a9356e029060266bdcc /src/search/popup.cpp | |
| parent | 1acd0dfe09a34817d8daf58db2c53b2262eec7b7 (diff) | |
clang-tidy: fix unecessary-value-param
Diffstat (limited to 'src/search/popup.cpp')
| -rw-r--r-- | src/search/popup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/search/popup.cpp b/src/search/popup.cpp index 35efc569a..2c4b38fa5 100644 --- a/src/search/popup.cpp +++ b/src/search/popup.cpp @@ -55,7 +55,7 @@ QString Search::balooUiName() Popup::Popup(std::shared_ptr<const DolphinQuery> dolphinQuery, QWidget *parent) : WidgetMenu{parent} - , UpdatableStateInterface{dolphinQuery} + , UpdatableStateInterface{std::move(dolphinQuery)} { } |
