diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2009-08-19 03:30:30 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2009-08-19 03:30:30 (GMT) |
commit | 255f4adf8ada913bd180ab7b8c4a4f3d32548e69 (patch) | |
tree | f74bb347ce277df0818840268926fd6dcc8fd0d1 /src/declarative/util/qmltransition.cpp | |
parent | f792bae5b13ad68f846a2be1f002d8376f2daef8 (diff) | |
download | Qt-255f4adf8ada913bd180ab7b8c4a4f3d32548e69.zip Qt-255f4adf8ada913bd180ab7b8c4a4f3d32548e69.tar.gz Qt-255f4adf8ada913bd180ab7b8c4a4f3d32548e69.tar.bz2 |
doc cleanup
Diffstat (limited to 'src/declarative/util/qmltransition.cpp')
-rw-r--r-- | src/declarative/util/qmltransition.cpp | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/declarative/util/qmltransition.cpp b/src/declarative/util/qmltransition.cpp index a9b8cb3..fd22f6b 100644 --- a/src/declarative/util/qmltransition.cpp +++ b/src/declarative/util/qmltransition.cpp @@ -198,14 +198,6 @@ void QmlTransition::prepare(QmlStateOperation::ActionList &actions, } \endcode */ - -/*! - \property QmlTransition::fromState - \brief a selector indicating which states, when left, should trigger the transition. - - fromState is used in conjunction with toState to determine when a transition should - be applied. The default value is "*" (any state). -*/ QString QmlTransition::fromState() const { Q_D(const QmlTransition); @@ -224,14 +216,6 @@ void QmlTransition::setFromState(const QString &f) The default value is false. */ - - -/*! - \property QmlTransition::reversible - \brief whether the transition should be automatically reversed when the conditions that triggered this transition are reversed. - - The default value is false. -*/ bool QmlTransition::reversible() const { Q_D(const QmlTransition); @@ -244,13 +228,6 @@ void QmlTransition::setReversible(bool r) d->reversible = r; } -/*! - \property QmlTransition::toState - \brief a selector indicating which states, when entered, should trigger the transition. - - toState is used in conjunction with fromState to determine when a transition should - be applied. The default value is "*" (any state). -*/ QString QmlTransition::toState() const { Q_D(const QmlTransition); @@ -272,11 +249,6 @@ void QmlTransition::setToState(const QString &t) which contains all the animations, and assign that to operations. \default */ - -/*! - \property QmlTransition::operations - \brief a list of the transition animations to be run. -*/ QmlList<QmlAbstractAnimation *>* QmlTransition::operations() { Q_D(QmlTransition); |