diff options
author | David Robillard <d@drobilla.net> | 2020-12-14 21:19:25 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-14 22:04:29 +0100 |
commit | 8441de6266f8158a05aea23c6d415f6ea65065b8 (patch) | |
tree | 6aefcd0da25f01c73b3d4d96a00b88c83970b9c6 | |
parent | e98e0618a8d6f70d8467284c0700ed614d537afa (diff) | |
download | ingen-8441de6266f8158a05aea23c6d415f6ea65065b8.tar.gz ingen-8441de6266f8158a05aea23c6d415f6ea65065b8.tar.bz2 ingen-8441de6266f8158a05aea23c6d415f6ea65065b8.zip |
Fix inconsistent parameter name
-rw-r--r-- | .clang-tidy | 1 | ||||
-rw-r--r-- | src/gui/ThreadedLoader.hpp | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/.clang-tidy b/.clang-tidy index 9c725bea..a1c6af8c 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -67,7 +67,6 @@ Checks: > -readability-convert-member-functions-to-static, -readability-delete-null-pointer, -readability-implicit-bool-conversion, - -readability-inconsistent-declaration-parameter-name, -readability-redundant-smartptr-get, -readability-use-anyofallof, WarningsAsErrors: '*' diff --git a/src/gui/ThreadedLoader.hpp b/src/gui/ThreadedLoader.hpp index ec591a9c..1a0d764f 100644 --- a/src/gui/ThreadedLoader.hpp +++ b/src/gui/ThreadedLoader.hpp @@ -79,7 +79,7 @@ private: boost::optional<Properties> engine_data); void save_graph_event(std::shared_ptr<const client::GraphModel> model, - const URI& filename); + const URI& uri); /** Returns nothing and takes no parameters (because they have all been bound) */ using Closure = sigc::slot<void>; |