aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickrepeater.cpp
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@digia.com>2013-10-01 13:03:28 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-02 14:40:01 +0200
commit4706b1ceff9af9141044ed3cf020ce5624bfa40f (patch)
tree43672217a945512ddd1704468d1fd4b6e9c153c7 /src/quick/items/qquickrepeater.cpp
parent4f50ab594aa2fb1d38981127beca634ad3396489 (diff)
qdoc: no longer recognizes the version nr in QML refs
All QML references of the form <QML-module-name><QML-module-version>::<QML-type>::<member-name> have had the <QML-module-version> removed i. Task-number: QTBUG-33776 Change-Id: Idde279e0f254cd24ea44f9841662dd81a2c5bbc6 Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/quick/items/qquickrepeater.cpp')
-rw-r--r--src/quick/items/qquickrepeater.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/quick/items/qquickrepeater.cpp b/src/quick/items/qquickrepeater.cpp
index 686d7a64af..072bfab73c 100644
--- a/src/quick/items/qquickrepeater.cpp
+++ b/src/quick/items/qquickrepeater.cpp
@@ -131,7 +131,7 @@ QQuickRepeaterPrivate::~QQuickRepeaterPrivate()
*/
/*!
- \qmlsignal QtQuick2::Repeater::onItemAdded(int index, Item item)
+ \qmlsignal QtQuick::Repeater::onItemAdded(int index, Item item)
This handler is called when an item is added to the repeater. The \a index
parameter holds the index at which the item has been inserted within the
@@ -139,7 +139,7 @@ QQuickRepeaterPrivate::~QQuickRepeaterPrivate()
*/
/*!
- \qmlsignal QtQuick2::Repeater::onItemRemoved(int index, Item item)
+ \qmlsignal QtQuick::Repeater::onItemRemoved(int index, Item item)
This handler is called when an item is removed from the repeater. The \a index
parameter holds the index at which the item was removed from the repeater,
@@ -158,7 +158,7 @@ QQuickRepeater::~QQuickRepeater()
}
/*!
- \qmlproperty any QtQuick2::Repeater::model
+ \qmlproperty any QtQuick::Repeater::model
The model providing data for the repeater.
@@ -235,7 +235,7 @@ void QQuickRepeater::setModel(const QVariant &model)
}
/*!
- \qmlproperty Component QtQuick2::Repeater::delegate
+ \qmlproperty Component QtQuick::Repeater::delegate
\default
The delegate provides a template defining each item instantiated by the repeater.
@@ -299,7 +299,7 @@ void QQuickRepeater::setDelegate(QQmlComponent *delegate)
}
/*!
- \qmlproperty int QtQuick2::Repeater::count
+ \qmlproperty int QtQuick::Repeater::count
This property holds the number of items in the repeater.
*/
@@ -312,7 +312,7 @@ int QQuickRepeater::count() const
}
/*!
- \qmlmethod Item QtQuick2::Repeater::itemAt(index)
+ \qmlmethod Item QtQuick::Repeater::itemAt(index)
Returns the \l Item that has been created at the given \a index, or \c null
if no item exists at \a index.