From 3b89b43f097342bc76ab7b235f9649077a87deff Mon Sep 17 00:00:00 2001 From: Méven Car Date: Thu, 22 Jan 2026 17:02:34 +0100 Subject: clang-tidy: fix unecessary-value-param --- src/search/popup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/search/popup.cpp') 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 dolphinQuery, QWidget *parent) : WidgetMenu{parent} - , UpdatableStateInterface{dolphinQuery} + , UpdatableStateInterface{std::move(dolphinQuery)} { } -- cgit v1.3