Place each statement of default snippets on their own line.

Change-Id: Ia10d41887e6adbb0603a18fbf69bb1ce67eeac73
Task-number: QTCREATORBUG-12253
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
This commit is contained in:
Mitch Curtis
2014-11-14 11:29:09 +01:00
committed by Mitch Curtis
parent 8cfb167a56
commit 1635e53ea2
+31 -6
View File
@@ -51,10 +51,35 @@
target: $object$
$$
}</snippet>
<snippet group="QML" trigger="NumberAnimation" id="qml_numberanimationwithtargets" complement="with targets">NumberAnimation { targets: [$object$]; properties: "$name$"; duration: $200$ }</snippet>
<snippet group="QML" trigger="NumberAnimation" id="qml_numberanimationwithtarget" complement="with target">NumberAnimation { target: $object$; property: "$name$"; duration: $200$; easing.type: Easing.$InOutQuad$ }</snippet>
<snippet group="QML" trigger="PropertyAction" id="qml_propertyactionwithtargets" complement="with targets">PropertyAction { targets: [$object$]; properties: "$name$" }</snippet>
<snippet group="QML" trigger="PropertyAction" id="qml_propertyactionwithtarget" complement="with target">PropertyAction { target: $object$; property: "$name$" }</snippet>
<snippet group="QML" trigger="PauseAnimation" id="qml_pauseanimation">PauseAnimation { duration: $200$ }</snippet>
<snippet group="QML" trigger="ColorAnimation" id="qml_coloranimation">ColorAnimation { from: $"white"$; to: $"black"$; duration: $200$ }</snippet>
<snippet group="QML" trigger="NumberAnimation" id="qml_numberanimationwithtargets" complement="with targets">
NumberAnimation {
targets: [$object$]
properties: "$name$"
duration: $200$
}</snippet>
<snippet group="QML" trigger="NumberAnimation" id="qml_numberanimationwithtarget" complement="with target">
NumberAnimation {
target: $object$
property: "$name$"
duration: $200$
easing.type: Easing.$InOutQuad$
}</snippet>
<snippet group="QML" trigger="PropertyAction" id="qml_propertyactionwithtargets" complement="with targets">
PropertyAction {
targets: [$object$]
properties: "$name$"
}</snippet>
<snippet group="QML" trigger="PropertyAction" id="qml_propertyactionwithtarget" complement="with target">
PropertyAction {
target: $object$; property: "$name$" }</snippet>
<snippet group="QML" trigger="PauseAnimation" id="qml_pauseanimation">
PauseAnimation {
duration: $200$
}</snippet>
<snippet group="QML" trigger="ColorAnimation" id="qml_coloranimation">
ColorAnimation {
from: $"white"$
to: $"black"$
duration: $200$
}</snippet>
</snippets>