summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorThomas Hartmann <Thomas.Hartmann@digia.com>2014-11-07 10:09:59 +0100
committerThomas Hartmann <Thomas.Hartmann@digia.com>2014-11-07 12:17:54 +0100
commit0cc31809781393f7bcf192f3ab539b6b807381ff (patch)
tree9b521401e1376a53e94dbdc61b8bbe4d22dac906 /share
parente510c80c925d66b786df850e923d0096e4bb0887 (diff)
downloadqt-creator-0cc31809781393f7bcf192f3ab539b6b807381ff.tar.gz
QmlDesigner.PropertyEditor: Use correct scope for enums
Change-Id: I07b1d83071407c19874af936617a395a37a79dd5 Task-number: QTCREATORBUG-13080 Reviewed-by: Tim Jenssen <tim.jenssen@theqtcompany.com>
Diffstat (limited to 'share')
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml2
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml2
2 files changed, 2 insertions, 2 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml
index 6667085b03..fa859f3355 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml
@@ -50,7 +50,7 @@ Column {
ComboBox {
model: ["LeftToRight", "TopToBottom"]
backendValue: backendValues.flow
- scope: "Qt"
+ scope: "Flow"
}
ExpandingSpacer {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml
index bcfe922432..9bd5c30ed9 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml
@@ -85,7 +85,7 @@ Column {
model: ["LeftToRight", "TopToBottom"]
backendValue: backendValues.flow
Layout.fillWidth: true
- scope: "Qt"
+ scope: "Grid"
}
}