summaryrefslogtreecommitdiffstats
path: root/src/controls/StackView.qml
diff options
context:
space:
mode:
authorSze Howe Koh <szehowe.koh@gmail.com>2014-02-02 18:21:07 +0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-06 02:55:23 +0100
commit6e7d9f457a099a169567351676d22b9d33aa93b9 (patch)
tree648adbeaf099f78cda9b62149f56707bb995355b /src/controls/StackView.qml
parente786b58cb1cf907d25728eb9f99096cb09fc9837 (diff)
Doc: Fix broken links
Change-Id: Ibf4431b20b61c5e16c6936775647ba3eb0049abe Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com>
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.