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.h | |
| parent | 1acd0dfe09a34817d8daf58db2c53b2262eec7b7 (diff) | |
clang-tidy: fix unecessary-value-param
Diffstat (limited to 'src/search/bar.h')
| -rw-r--r-- | src/search/bar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/search/bar.h b/src/search/bar.h index c45e838c7..969335232 100644 --- a/src/search/bar.h +++ b/src/search/bar.h @@ -54,7 +54,7 @@ public: /** * @brief Constructs a Search::Bar with an initial state matching @p dolphinQuery and with parent @p parent. */ - explicit Bar(std::shared_ptr<const DolphinQuery> dolphinQuery, QWidget *parent = nullptr); + explicit Bar(const std::shared_ptr<const DolphinQuery> &dolphinQuery, QWidget *parent = nullptr); /** * Returns the text that should be used as input |
