Remove const in declarations' arguments that are passed by value

This commit is contained in:
thalieht 2019-02-22 01:03:22 +02:00
commit 8a19a0d4a0
11 changed files with 22 additions and 22 deletions

View file

@ -63,7 +63,7 @@ namespace Utils
return str;
}
bool parseBool(const QString &string, const bool defaultValue);
bool parseBool(const QString &string, bool defaultValue);
TriStateBool parseTriStateBool(const QString &string);
}
}