aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/ui-components/slideswitch
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/ui-components/slideswitch')
-rw-r--r--examples/quick/ui-components/slideswitch/content/Switch.qml2
-rw-r--r--examples/quick/ui-components/slideswitch/doc/src/example-slideswitch.qdoc8
-rw-r--r--examples/quick/ui-components/slideswitch/slideswitch.qml2
3 files changed, 6 insertions, 6 deletions
diff --git a/examples/quick/ui-components/slideswitch/content/Switch.qml b/examples/quick/ui-components/slideswitch/content/Switch.qml
index 6f41410b03..51b7185b72 100644
--- a/examples/quick/ui-components/slideswitch/content/Switch.qml
+++ b/examples/quick/ui-components/slideswitch/content/Switch.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the examples of the Qt Toolkit.
diff --git a/examples/quick/ui-components/slideswitch/doc/src/example-slideswitch.qdoc b/examples/quick/ui-components/slideswitch/doc/src/example-slideswitch.qdoc
index 4e302e7256..6ec2360287 100644
--- a/examples/quick/ui-components/slideswitch/doc/src/example-slideswitch.qdoc
+++ b/examples/quick/ui-components/slideswitch/doc/src/example-slideswitch.qdoc
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the documentation of the Qt Toolkit.
@@ -34,7 +34,7 @@
This example shows how to create a reusable switch component in QML.
-The code for this example can be found in the \c examples/quick/tutorials/ui-components/slideswitch directory.
+The code for this example can be found in the \c examples/quick/ui-components/slideswitch directory.
The elements that compose the switch are:
@@ -105,7 +105,7 @@ For more information on states see \l{Qt Quick States}.
We add two JavaScript functions to our switch:
-\snippet quick/tutorials/ui-components/slideswitch/content/Switch.qml 2
+\snippet quick/ui-components/slideswitch/content/Switch.qml 2
This first function is called when the background image or the knob are clicked. We simply want the switch to toggle between the two
states (\e on and \e off).
@@ -122,7 +122,7 @@ For more information on scripts see \l{Using JavaScript Expressions in QML}.
\snippet quick/ui-components/slideswitch/content/Switch.qml 7
At this point, when the switch toggles between the two states the knob will instantly change its \c x position between 1 and 78.
-In order for the the knob to move smoothly we add a transition that will animate the \c x property with an easing curve for a duration of 200ms.
+In order for the knob to move smoothly we add a transition that will animate the \c x property with an easing curve for a duration of 200ms.
For more information on transitions see \l{Animation and Transitions in Qt Quick}.
diff --git a/examples/quick/ui-components/slideswitch/slideswitch.qml b/examples/quick/ui-components/slideswitch/slideswitch.qml
index 96e5d91fbb..491df1a6e7 100644
--- a/examples/quick/ui-components/slideswitch/slideswitch.qml
+++ b/examples/quick/ui-components/slideswitch/slideswitch.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the examples of the Qt Toolkit.