diff options
author | Thomas Hartmann <Thomas.Hartmann@digia.com> | 2014-11-07 09:39:16 +0100 |
---|---|---|
committer | Thomas Hartmann <Thomas.Hartmann@digia.com> | 2014-11-07 09:39:52 +0100 |
commit | 8a8e21e1bc678d5459344ec6543c73c3c7be6e89 (patch) | |
tree | 8f514446ee929eb2234e88d0fca66506cb81e9ab | |
parent | 5c03037a0b1c779c5e81956e8f44d9fa0000a37b (diff) | |
download | qt-creator-8a8e21e1bc678d5459344ec6543c73c3c7be6e89.tar.gz |
QmlDesigner.PropertyEditor: Fixing templates
toolTip was renamed to tooltip.
Change-Id: I18fc3cfb3f9ce21a6402ce3adccbb078a297b682
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
5 files changed, 5 insertions, 5 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/BooleanEditorTemplate.template b/share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/BooleanEditorTemplate.template index b871261efc..b99c3556f8 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/BooleanEditorTemplate.template +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/BooleanEditorTemplate.template @@ -1,6 +1,6 @@ Label { text: "%1" - toolTip: "%1" + tooltip: "%1" } CheckBox { diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/IntEditorTemplate.template b/share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/IntEditorTemplate.template index dff21cc1e6..bd5a899d95 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/IntEditorTemplate.template +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/IntEditorTemplate.template @@ -1,6 +1,6 @@ Label { text: "%1" - toolTip: "%1" + tooltip: "%1" } SpinBox { maximumValue: 9999999 diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/RealEditorTemplate.template b/share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/RealEditorTemplate.template index 4377c8a16e..d2a259c80e 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/RealEditorTemplate.template +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/RealEditorTemplate.template @@ -1,6 +1,6 @@ Label { text: "%1" - toolTip: "%1" + tooltip: "%1" } SpinBox { maximumValue: 9999999 diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/StringEditorTemplate.template b/share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/StringEditorTemplate.template index f770a68636..99607dfd26 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/StringEditorTemplate.template +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/StringEditorTemplate.template @@ -1,6 +1,6 @@ Label { text: "%1" - toolTip: "%1" + tooltip: "%1" } LineEdit { backendValue: backendValues.%2 diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/UrlEditorTemplate.template b/share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/UrlEditorTemplate.template index 5fa8ab63ac..4d3a015e7b 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/UrlEditorTemplate.template +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/UrlEditorTemplate.template @@ -1,6 +1,6 @@ Label { text: "%1" - toolTip: "%1" + tooltip: "%1" } LineEdit { backendValue: backendValues.%2 |