summaryrefslogtreecommitdiffstats
path: root/src/declarative/util
diff options
context:
space:
mode:
authorDavid Boddie <david.boddie@nokia.com>2010-10-07 17:19:15 (GMT)
committerDavid Boddie <david.boddie@nokia.com>2010-10-07 17:19:15 (GMT)
commit3973481089f9101668c20a9317b759e09a784070 (patch)
treeb62fc5b1b80ddd8c4dd96827c39114b6f9c26d3a /src/declarative/util
parent2a4c0afc95d1cbed3161efd43bb781758bc7566d (diff)
downloadQt-3973481089f9101668c20a9317b759e09a784070.zip
Qt-3973481089f9101668c20a9317b759e09a784070.tar.gz
Qt-3973481089f9101668c20a9317b759e09a784070.tar.bz2
Doc: Fixed qdoc warnings.
Diffstat (limited to 'src/declarative/util')
-rw-r--r--src/declarative/util/qlistmodelinterface.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/declarative/util/qlistmodelinterface.cpp b/src/declarative/util/qlistmodelinterface.cpp
index acf4dd6..1e2dfb7 100644
--- a/src/declarative/util/qlistmodelinterface.cpp
+++ b/src/declarative/util/qlistmodelinterface.cpp
@@ -46,6 +46,7 @@ QT_BEGIN_NAMESPACE
/*!
\internal
\class QListModelInterface
+ \since 4.7
\brief The QListModelInterface class can be subclassed to provide C++ models to QDeclarativeGraphics Views
This class is comprised primarily of pure virtual functions which
@@ -70,15 +71,10 @@ QT_BEGIN_NAMESPACE
Returns the number of data entries in the model.
*/
-/*! \fn QHash<int,QVariant> QListModelInterface::data(int index, const QList<int>& roles) const
+/*! \fn QVariant QListModelInterface::data(int index, int role) const
Returns the data at the given \a index for the specified \a roles.
*/
-/*! \fn bool QListModelInterface::setData(int index, const QHash<int,QVariant>& values)
- Sets the data at the given \a index. \a values is a mapping of
- QVariant values to roles. Returns false.
-*/
-
/*! \fn QList<int> QListModelInterface::roles() const
Returns the list of roles for which the list model interface
provides data.