summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2022-01-17 12:30:32 +0100
committerChristian Stenger <christian.stenger@qt.io>2022-01-17 11:36:28 +0000
commit9be03a826d5d7b45e3ce2f20a7641ec29dee07b6 (patch)
tree75d98e0694ebadf9cd4c0003b67c419ca87e7578
parentfa53849b4a0959ab7bf7295b79fab251b90aec3f (diff)
downloadqt-creator-9be03a826d5d7b45e3ce2f20a7641ec29dee07b6.tar.gz
PE: Fix compile
Amends c1c147a9dc9. Change-Id: I2f4e6e724f3226541c5de683d0ac6403538622be Reviewed-by: David Schulz <david.schulz@qt.io>
-rw-r--r--src/plugins/projectexplorer/jsonwizard/jsonwizardfactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/jsonwizard/jsonwizardfactory.cpp b/src/plugins/projectexplorer/jsonwizard/jsonwizardfactory.cpp
index 946d2d92ab..844321f354 100644
--- a/src/plugins/projectexplorer/jsonwizard/jsonwizardfactory.cpp
+++ b/src/plugins/projectexplorer/jsonwizard/jsonwizardfactory.cpp
@@ -311,7 +311,7 @@ std::pair<int, QStringList> JsonWizardFactory::screenSizeInfoFromPage(const QStr
return {};
const QVariantMap screenFactorDataMap = screenFactorData.toMap();
- if (not screenFactorDataMap.contains("items"))
+ if (!screenFactorDataMap.contains("items"))
return {};
bool ok = false;