fix readability-identifier-length

This commit is contained in:
wmayer
2023-11-14 20:15:02 +01:00
parent 6a66034ce2
commit 73a1e90e45
38 changed files with 281 additions and 270 deletions

View File

@@ -35,12 +35,12 @@ FutureWatcherProgress::FutureWatcherProgress(const char* text, unsigned int step
FutureWatcherProgress::~FutureWatcherProgress() = default;
void FutureWatcherProgress::progressValueChanged(int v)
void FutureWatcherProgress::progressValueChanged(int value)
{
if (steps == 0) {
return;
}
unsigned int step = (100 * static_cast<unsigned int>(v)) / steps;
unsigned int step = (100 * static_cast<unsigned int>(value)) / steps;
if (step > current) {
current = step;
seq.next();