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/bar.cpp | |
| parent | 1acd0dfe09a34817d8daf58db2c53b2262eec7b7 (diff) | |
clang-tidy: fix unecessary-value-param
Diffstat (limited to 'src/search/bar.cpp')
| -rw-r--r-- | src/search/bar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/search/bar.cpp b/src/search/bar.cpp index dd5acd150..851eef942 100644 --- a/src/search/bar.cpp +++ b/src/search/bar.cpp @@ -44,7 +44,7 @@ bool isSearchConfigured(const std::shared_ptr<const DolphinQuery> &searchConfigu }; } -Bar::Bar(std::shared_ptr<const DolphinQuery> dolphinQuery, QWidget *parent) +Bar::Bar(const std::shared_ptr<const DolphinQuery> &dolphinQuery, QWidget *parent) : AnimatedHeightWidget(parent) , UpdatableStateInterface{dolphinQuery} { |
