summaryrefslogtreecommitdiff
path: root/src/controls/StackViewTransition.qml
diff options
context:
space:
mode:
authorRichard Moe Gustavsen <richard.gustavsen@digia.com>2013-03-26 13:19:04 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-29 08:37:03 +0100
commit4ac432ad2092e89b4c86ea124bbaa8e2234d11e2 (patch)
tree679002d3056f26ba1437ebcb7de88ebff9ef0677 /src/controls/StackViewTransition.qml
parentadf9b031b4534b1ebeca4d943ebcca4ee6497d40 (diff)
downloadqtquickcontrols-4ac432ad2092e89b4c86ea124bbaa8e2234d11e2.tar.gz
StackViewTransition: use 'item' instead of 'page' in the API
Change-Id: I6eedd4a8052fc23be248631929361326654d9534 Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'src/controls/StackViewTransition.qml')
-rw-r--r--src/controls/StackViewTransition.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/controls/StackViewTransition.qml b/src/controls/StackViewTransition.qml
index 2e9c3f0f..e58ad3f3 100644
--- a/src/controls/StackViewTransition.qml
+++ b/src/controls/StackViewTransition.qml
@@ -44,17 +44,17 @@ ParallelAnimation {
id: root
/*! The name of the animation that is running. Can be one of the following:
\list
- \li 'PushAnimation'
- \li 'PopAnimation'
- \li 'ReplaceAnimation'
+ \li 'PushTransition'
+ \li 'PopTransition'
+ \li 'ReplaceTransition'
\endlist
*/
property string name
/*! The page that is transitioning in. */
- property Item enterPage
+ property Item enterItem
/*! The page that is transitioning out */
- property Item exitPage
- /*! Set to \c true if the animation is told to
+ property Item exitItem
+ /*! Set to \c true if the transition is told to
fast-forward directly to its end-state */
property bool immediate
}