Update copyright year in license headers.
[profile/ivi/qtdeclarative.git] / examples / declarative / particles / plasmapatrol / content / ChoiceBox.qml
index 8a4363d..cf544d6 100644 (file)
@@ -1,6 +1,6 @@
 /****************************************************************************
 **
-** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
 ** All rights reserved.
 ** Contact: Nokia Corporation (qt-info@nokia.com)
 **
 import QtQuick 2.0
 import QtQuick.Particles 2.0
 
-Item{
+Item {
     id: container
     width: 360
     height: 160
     property ParticleSystem system
-    Ship{
+    Ship {
         id: nully
         system: system
     }
     property Item target: nully
     /*
-    Component.onCompleted:{
+    Component.onCompleted: {
         container.target.shipType = 1
         container.target.gunType = 1
     }
     */
-    Row{
+    Row {
         anchors.horizontalCenter: parent.horizontalCenter
         height: parent.height
         spacing: 8
-        Button{
+        Button {
             width: 80
             height: 80
             anchors.verticalCenter: parent.verticalCenter
@@ -75,11 +75,11 @@ Item{
                 container.target.shipType = nextVal;
             }
         }
-        Item{
+        Item {
             width: 128
             height: 128
             anchors.verticalCenter: parent.verticalCenter
-            Ship{
+            Ship {
                 hp: 20
                 anchors.centerIn: parent
                 shipType: container.target.shipType
@@ -87,7 +87,7 @@ Item{
                 system: container.system
             }
         }
-        Button{
+        Button {
             width: 80
             height: 80
             anchors.verticalCenter: parent.verticalCenter