diff options
author | Bea Lam <[email protected]> | 2012-08-06 14:25:24 +1000 |
---|---|---|
committer | Qt by Nokia <[email protected]> | 2012-08-08 04:11:17 +0200 |
commit | b2120f68683b7948891d72fe077f44ab7e6baf18 (patch) | |
tree | ede9def668f55f2f32448700da5e6fdf80b3cad6 /src/quick/items/qquickstateoperations.cpp | |
parent | ec519529087cc3005d55242569dcbca3dcee91bf (diff) |
Fix uses of various qml doc commands
Signals documented with \qmlsignal should indicate handler name,
i.e. 'onSignal' rather than 'signal'.
Methods documented with \qmlmethod do not need to document 'void'
return values.
Also the name of any documented attribute should be qualified
with 'QtQuick2::<qmltype>'.
Change-Id: I206dd9e8f39c3b84e029ae9d4101b05d0bfb3478
Reviewed-by: Andrew den Exter <[email protected]>
Diffstat (limited to 'src/quick/items/qquickstateoperations.cpp')
-rw-r--r-- | src/quick/items/qquickstateoperations.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/quick/items/qquickstateoperations.cpp b/src/quick/items/qquickstateoperations.cpp index 18d6c6b28d..995ebbc657 100644 --- a/src/quick/items/qquickstateoperations.cpp +++ b/src/quick/items/qquickstateoperations.cpp @@ -187,12 +187,12 @@ QQuickParentChange::~QQuickParentChange() } /*! - \qmlproperty real ParentChange::x - \qmlproperty real ParentChange::y - \qmlproperty real ParentChange::width - \qmlproperty real ParentChange::height - \qmlproperty real ParentChange::scale - \qmlproperty real ParentChange::rotation + \qmlproperty real QtQuick2::ParentChange::x + \qmlproperty real QtQuick2::ParentChange::y + \qmlproperty real QtQuick2::ParentChange::width + \qmlproperty real QtQuick2::ParentChange::height + \qmlproperty real QtQuick2::ParentChange::scale + \qmlproperty real QtQuick2::ParentChange::rotation These properties hold the new position, size, scale, and rotation for the item in this state. */ @@ -311,7 +311,7 @@ QQuickItem *QQuickParentChange::originalParent() const } /*! - \qmlproperty Item ParentChange::target + \qmlproperty Item QtQuick2::ParentChange::target This property holds the item to be reparented */ QQuickItem *QQuickParentChange::object() const @@ -327,7 +327,7 @@ void QQuickParentChange::setObject(QQuickItem *target) } /*! - \qmlproperty Item ParentChange::parent + \qmlproperty Item QtQuick2::ParentChange::parent This property holds the new parent for the item in this state. */ QQuickItem *QQuickParentChange::parent() const @@ -914,7 +914,7 @@ QQuickAnchorSet *QQuickAnchorChanges::anchors() } /*! - \qmlproperty Item AnchorChanges::target + \qmlproperty Item QtQuick2::AnchorChanges::target This property holds the \l Item for which the anchor changes will be applied. */ QQuickItem *QQuickAnchorChanges::object() const @@ -930,13 +930,13 @@ void QQuickAnchorChanges::setObject(QQuickItem *target) } /*! - \qmlproperty AnchorLine AnchorChanges::anchors.left - \qmlproperty AnchorLine AnchorChanges::anchors.right - \qmlproperty AnchorLine AnchorChanges::anchors.horizontalCenter - \qmlproperty AnchorLine AnchorChanges::anchors.top - \qmlproperty AnchorLine AnchorChanges::anchors.bottom - \qmlproperty AnchorLine AnchorChanges::anchors.verticalCenter - \qmlproperty AnchorLine AnchorChanges::anchors.baseline + \qmlproperty AnchorLine QtQuick2::AnchorChanges::anchors.left + \qmlproperty AnchorLine QtQuick2::AnchorChanges::anchors.right + \qmlproperty AnchorLine QtQuick2::AnchorChanges::anchors.horizontalCenter + \qmlproperty AnchorLine QtQuick2::AnchorChanges::anchors.top + \qmlproperty AnchorLine QtQuick2::AnchorChanges::anchors.bottom + \qmlproperty AnchorLine QtQuick2::AnchorChanges::anchors.verticalCenter + \qmlproperty AnchorLine QtQuick2::AnchorChanges::anchors.baseline These properties change the respective anchors of the item. |