summaryrefslogtreecommitdiffstats
path: root/src/controls/StackView.qml
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@digia.com>2014-02-17 11:37:03 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-17 11:37:03 +0100
commit9ef983d05df921d47cc0827670a8e3481bcc84ef (patch)
tree0e38f79c465401c197554ba325101711a3e6c670 /src/controls/StackView.qml
parent04ab2428e004f01f630eb5117255bb85f5390fb4 (diff)
parenta20948b726c1e0edd70761e8e115a53ba5526a51 (diff)
Merge "Merge remote-tracking branch 'origin/stable' into dev" into refs/staging/dev
Diffstat (limited to 'src/controls/StackView.qml')
-rw-r--r--src/controls/StackView.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/controls/StackView.qml b/src/controls/StackView.qml
index d8089174e..2397e5e40 100644
--- a/src/controls/StackView.qml
+++ b/src/controls/StackView.qml
@@ -312,7 +312,7 @@ import QtQuick.Controls.Private 1.0
contains the properties \c enterItem and \c exitItem. You set the target of your
inner animations to those items. Since the same items instance can be pushed several
times to a StackView, you should always override
- \l {StackViewDelegate::transitionFinished(properties)}{StackViewDelegate.transitionFinished(properties)}.
+ \l {StackViewDelegate::transitionFinished()}{StackViewDelegate.transitionFinished()}.
Implement this function to reset any properties animated on the exitItem so that later
transitions can expect the items to be in a default state.
@@ -360,7 +360,7 @@ import QtQuick.Controls.Private 1.0
\section2 Advanced usage
When the StackView needs a new transition, it first calls
- \l {StackViewDelegate::getTransition(properties)}{StackViewDelegate.getTransition(properties)}.
+ \l {StackViewDelegate::getTransition()}{StackViewDelegate.getTransition()}.
The base implementation of this function just looks for a property named \c properties.name inside
itself (root), which is how it finds \c {property Component pushTransition} in the examples above.