From a034d3ffd3224c677454df6db68ed825debcb21d Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Tue, 25 Oct 2016 11:58:50 +0200 Subject: [PATCH] fix(app): little code style fixes --- tests/ui/modules/Common/Animations/CaterpillarAnimation.qml | 2 +- tests/ui/modules/Common/Form/ExclusiveButtons.qml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/ui/modules/Common/Animations/CaterpillarAnimation.qml b/tests/ui/modules/Common/Animations/CaterpillarAnimation.qml index 8a63e85b8..aafca2c5f 100644 --- a/tests/ui/modules/Common/Animations/CaterpillarAnimation.qml +++ b/tests/ui/modules/Common/Animations/CaterpillarAnimation.qml @@ -9,9 +9,9 @@ Row { property color sphereColor: CaterpillarAnimationStyle.sphere.color property int animationDuration: CaterpillarAnimationStyle.animation.duration + property int animationSpace: CaterpillarAnimationStyle.animation.space property int nSpheres: CaterpillarAnimationStyle.nSpheres property int sphereSize: CaterpillarAnimationStyle.sphere.size - property int animationSpace: CaterpillarAnimationStyle.animation.space spacing: CaterpillarAnimationStyle.spacing diff --git a/tests/ui/modules/Common/Form/ExclusiveButtons.qml b/tests/ui/modules/Common/Form/ExclusiveButtons.qml index 0115a6d65..13534c35f 100644 --- a/tests/ui/modules/Common/Form/ExclusiveButtons.qml +++ b/tests/ui/modules/Common/Form/ExclusiveButtons.qml @@ -11,6 +11,8 @@ Row { property int selectedButton: 0 + // Emitted when the selected button is changed. + // Gives the selected button id. signal clicked (int button) spacing: ExclusiveButtonsStyle.buttonsSpacing