aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2011-08-17 09:20:22 +1000
committerQt by Nokia <qt-info@nokia.com>2011-08-17 02:07:59 +0200
commit953843800b0c7fa946e8b203d4cbe34978e02895 (patch)
tree8cf69c532eec7ff619d10ddbbb544c551dabcef0
parent5c4cf98424de18dd07b4cabfd2f45331f8cbbdab (diff)
Add module qualifier to \qmlattachedproperty docs
Was missed by initial script. Change-Id: Ib5e6482f53bda25b516075b52eb71f87b9279655 Reviewed-on: http://codereview.qt.nokia.com/3057 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Michael Brasser <michael.brasser@nokia.com>
-rw-r--r--src/declarative/items/qsggridview.cpp6
-rw-r--r--src/declarative/items/qsglistview.cpp12
-rw-r--r--src/declarative/items/qsgpathview.cpp6
-rw-r--r--src/declarative/items/qsgvisualitemmodel.cpp2
-rw-r--r--src/declarative/util/qdeclarativepackage.cpp2
5 files changed, 14 insertions, 14 deletions
diff --git a/src/declarative/items/qsggridview.cpp b/src/declarative/items/qsggridview.cpp
index 5cfb04ecc7..bc4954a168 100644
--- a/src/declarative/items/qsggridview.cpp
+++ b/src/declarative/items/qsggridview.cpp
@@ -1065,14 +1065,14 @@ void QSGGridView::setHighlightFollowsCurrentItem(bool autoHighlight)
}
/*!
- \qmlattachedproperty bool GridView::isCurrentItem
+ \qmlattachedproperty bool QtQuick2::GridView::isCurrentItem
This attached property is true if this delegate is the current item; otherwise false.
It is attached to each instance of the delegate.
*/
/*!
- \qmlattachedproperty GridView GridView::view
+ \qmlattachedproperty GridView QtQuick2::GridView::view
This attached property holds the view that manages this delegate instance.
It is attached to each instance of the delegate.
@@ -1081,7 +1081,7 @@ void QSGGridView::setHighlightFollowsCurrentItem(bool autoHighlight)
*/
/*!
- \qmlattachedproperty bool GridView::delayRemove
+ \qmlattachedproperty bool QtQuick2::GridView::delayRemove
This attached property holds whether the delegate may be destroyed.
It is attached to each instance of the delegate.
diff --git a/src/declarative/items/qsglistview.cpp b/src/declarative/items/qsglistview.cpp
index 11828fc59e..3be4a4bd58 100644
--- a/src/declarative/items/qsglistview.cpp
+++ b/src/declarative/items/qsglistview.cpp
@@ -1337,7 +1337,7 @@ QSGListView::~QSGListView()
}
/*!
- \qmlattachedproperty bool ListView::isCurrentItem
+ \qmlattachedproperty bool QtQuick2::ListView::isCurrentItem
This attached property is true if this delegate is the current item; otherwise false.
It is attached to each instance of the delegate.
@@ -1348,14 +1348,14 @@ QSGListView::~QSGListView()
*/
/*!
- \qmlattachedproperty ListView ListView::view
+ \qmlattachedproperty ListView QtQuick2::ListView::view
This attached property holds the view that manages this delegate instance.
It is attached to each instance of the delegate.
*/
/*!
- \qmlattachedproperty string ListView::previousSection
+ \qmlattachedproperty string QtQuick2::ListView::previousSection
This attached property holds the section of the previous element.
It is attached to each instance of the delegate.
@@ -1364,7 +1364,7 @@ QSGListView::~QSGListView()
*/
/*!
- \qmlattachedproperty string ListView::nextSection
+ \qmlattachedproperty string QtQuick2::ListView::nextSection
This attached property holds the section of the next element.
It is attached to each instance of the delegate.
@@ -1373,7 +1373,7 @@ QSGListView::~QSGListView()
*/
/*!
- \qmlattachedproperty string ListView::section
+ \qmlattachedproperty string QtQuick2::ListView::section
This attached property holds the section of this element.
It is attached to each instance of the delegate.
@@ -1382,7 +1382,7 @@ QSGListView::~QSGListView()
*/
/*!
- \qmlattachedproperty bool ListView::delayRemove
+ \qmlattachedproperty bool QtQuick2::ListView::delayRemove
This attached property holds whether the delegate may be destroyed.
It is attached to each instance of the delegate.
diff --git a/src/declarative/items/qsgpathview.cpp b/src/declarative/items/qsgpathview.cpp
index 54344d0947..88c5df9cfb 100644
--- a/src/declarative/items/qsgpathview.cpp
+++ b/src/declarative/items/qsgpathview.cpp
@@ -432,14 +432,14 @@ QSGPathView::~QSGPathView()
}
/*!
- \qmlattachedproperty PathView PathView::view
+ \qmlattachedproperty PathView QtQuick2::PathView::view
This attached property holds the view that manages this delegate instance.
It is attached to each instance of the delegate.
*/
/*!
- \qmlattachedproperty bool PathView::onPath
+ \qmlattachedproperty bool QtQuick2::PathView::onPath
This attached property holds whether the item is currently on the path.
If a pathItemCount has been set, it is possible that some items may
@@ -459,7 +459,7 @@ QSGPathView::~QSGPathView()
*/
/*!
- \qmlattachedproperty bool PathView::isCurrentItem
+ \qmlattachedproperty bool QtQuick2::PathView::isCurrentItem
This attached property is true if this delegate is the current item; otherwise false.
It is attached to each instance of the delegate.
diff --git a/src/declarative/items/qsgvisualitemmodel.cpp b/src/declarative/items/qsgvisualitemmodel.cpp
index 2fa4e4213d..5dfe01dd2b 100644
--- a/src/declarative/items/qsgvisualitemmodel.cpp
+++ b/src/declarative/items/qsgvisualitemmodel.cpp
@@ -167,7 +167,7 @@ QSGVisualItemModel::QSGVisualItemModel(QObject *parent)
}
/*!
- \qmlattachedproperty int VisualItemModel::index
+ \qmlattachedproperty int QtQuick2::VisualItemModel::index
This attached property holds the index of this delegate's item within the model.
It is attached to each instance of the delegate.
diff --git a/src/declarative/util/qdeclarativepackage.cpp b/src/declarative/util/qdeclarativepackage.cpp
index 915633f1ad..4973ee212a 100644
--- a/src/declarative/util/qdeclarativepackage.cpp
+++ b/src/declarative/util/qdeclarativepackage.cpp
@@ -76,7 +76,7 @@ QT_BEGIN_NAMESPACE
*/
/*!
- \qmlattachedproperty string Package::name
+ \qmlattachedproperty string QtQuick2::Package::name
This attached property holds the name of an item within a Package.
*/