Skip to content
Snippets Groups Projects
Commit 7ec6c0a9 authored by Thomas Hartmann's avatar Thomas Hartmann
Browse files

QmlDesigner.propertyEditor: fix for boolean


Booleans might also be called "boolean" in the code model.

Change-Id: I700a5050234e9750df5c7cb1229b1d426e592189
Reviewed-by: default avatarMarco Bubke <marco.bubke@digia.com>
parent 74119f7a
No related branches found
No related tags found
No related merge requests found
...@@ -667,7 +667,7 @@ QString templateGeneration(NodeMetaInfo type, NodeMetaInfo superType, const QmlO ...@@ -667,7 +667,7 @@ QString templateGeneration(NodeMetaInfo type, NodeMetaInfo superType, const QmlO
)).arg(name).arg(properName); )).arg(name).arg(properName);
emptyTemplate = false; emptyTemplate = false;
} }
if (typeName == "bool") { if (typeName == "bool" || typeName == "boolean") {
qmlTemplate += QString(QLatin1String( qmlTemplate += QString(QLatin1String(
"QWidget {\nlayout: HorizontalLayout {\nLabel {\ntext: \"%1\"\ntoolTip: \"%1\"\n}\nCheckBox {text: backendValues.%2.value\nbackendValue: backendValues.%2\nbaseStateFlag: isBaseState\ncheckable: true\n}\n}\n}\n" "QWidget {\nlayout: HorizontalLayout {\nLabel {\ntext: \"%1\"\ntoolTip: \"%1\"\n}\nCheckBox {text: backendValues.%2.value\nbackendValue: backendValues.%2\nbaseStateFlag: isBaseState\ncheckable: true\n}\n}\n}\n"
)).arg(name).arg(properName); )).arg(name).arg(properName);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment