CMake: Simplify CMakeConfigItem::toBool() use

Change-Id: I60120a152174b7c3751b99ac92d31bdb9c3ab1d9
Reviewed-by: Cristian Adam <cristian.adam@qt.io>
This commit is contained in:
hjk
2021-07-06 10:58:54 +02:00
parent 3b779fb8dd
commit 2ff446bd25
4 changed files with 5 additions and 5 deletions

View File

@@ -393,7 +393,7 @@ QVariant ConfigModelTreeItem::data(int column, int role) const
}
case 1: {
const QString value = currentValue();
const auto boolValue = CMakeConfigItem::toBool(value.toUtf8());
const auto boolValue = CMakeConfigItem::toBool(value);
const bool isTrue = boolValue.has_value() && boolValue.value();
switch (role) {