From 2115232a16d81d28dbdb8042ed8e9316858514c6 Mon Sep 17 00:00:00 2001 From: Sebastian Parborg Date: Fri, 4 Sep 2020 20:59:13 +0200 Subject: Cleanup: Clang-Tidy readability-inconsistent-declaration-parameter-name fix No functional changes --- source/blender/freestyle/intern/application/Controller.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/freestyle/intern/application/Controller.cpp') diff --git a/source/blender/freestyle/intern/application/Controller.cpp b/source/blender/freestyle/intern/application/Controller.cpp index dea09b7620f..4628c76ca7f 100644 --- a/source/blender/freestyle/intern/application/Controller.cpp +++ b/source/blender/freestyle/intern/application/Controller.cpp @@ -835,9 +835,9 @@ bool Controller::getFaceSmoothness() const return _EnableFaceSmoothness; } -void Controller::setComputeRidgesAndValleysFlag(bool iBool) +void Controller::setComputeRidgesAndValleysFlag(bool b) { - _ComputeRidges = iBool; + _ComputeRidges = b; } bool Controller::getComputeRidgesAndValleysFlag() const -- cgit v1.2.3