summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBea Lam <bea.lam@nokia.com>2010-09-17 01:28:23 (GMT)
committerJason McDonald <jason.mcdonald@nokia.com>2010-09-22 04:55:19 (GMT)
commitf6d61e677db6364cb6e8214531fc442931063a91 (patch)
tree35439f48de785776e986311ca4a194db28713dec
parentc2f239dc35a01502ba6157096f4e91d7af624a5e (diff)
downloadQt-f6d61e677db6364cb6e8214531fc442931063a91.zip
Qt-f6d61e677db6364cb6e8214531fc442931063a91.tar.gz
Qt-f6d61e677db6364cb6e8214531fc442931063a91.tar.bz2
Doc changes
(cherry picked from commit ee9c9e412fd5467e82be446603e71bee620ff04b)
-rw-r--r--src/declarative/util/qdeclarativelistmodel.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/declarative/util/qdeclarativelistmodel.cpp b/src/declarative/util/qdeclarativelistmodel.cpp
index cf2eada..f01d9b4 100644
--- a/src/declarative/util/qdeclarativelistmodel.cpp
+++ b/src/declarative/util/qdeclarativelistmodel.cpp
@@ -154,10 +154,10 @@ QDeclarativeListModelParser::ListInstruction *QDeclarativeListModelParser::ListM
handler. You must call sync() or else the changes made to the list from the external
thread will not be reflected in the list model in the main thread.
- \section1 Limitations
+ \section1 Restrictions
- If a list model is to be accessed from a WorkerScript, it \bold cannot
- contain list data. So, the following model cannot be used from a WorkerScript
+ If a list model is to be accessed from a WorkerScript, it cannot
+ contain list-type data. So, the following model cannot be used from a WorkerScript
because of the list contained in the "attributes" property:
\code
@@ -174,7 +174,7 @@ QDeclarativeListModelParser::ListInstruction *QDeclarativeListModelParser::ListM
}
\endcode
- In addition, the WorkerScript cannot add any list data to the model.
+ In addition, the WorkerScript cannot add list-type data to the model.
\sa {qmlmodels}{Data Models}, {declarative/threading/threadedlistmodel}{Threaded ListModel example}, QtDeclarative
*/