diff options
author | Alan Alpert <alan.alpert@nokia.com> | 2010-03-09 12:07:45 (GMT) |
---|---|---|
committer | Alan Alpert <alan.alpert@nokia.com> | 2010-03-09 12:07:45 (GMT) |
commit | fb77eadad25d55d1b1d08776f7f74e6cb5c1b39e (patch) | |
tree | 2008d6eb8cb5f5bb5222946580d16d0b2229b6be /doc | |
parent | 9cf0e75b2b73a59a65edb640b62a6838f31a8a1f (diff) | |
download | Qt-fb77eadad25d55d1b1d08776f7f74e6cb5c1b39e.zip Qt-fb77eadad25d55d1b1d08776f7f74e6cb5c1b39e.tar.gz Qt-fb77eadad25d55d1b1d08776f7f74e6cb5c1b39e.tar.bz2 |
Fix typo in docs
QStringList::appenf is private API, and shouldn't show up in docs.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/declarative/qdeclarativemodels.qdoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/declarative/qdeclarativemodels.qdoc b/doc/src/declarative/qdeclarativemodels.qdoc index c0e028e..f7d1a73 100644 --- a/doc/src/declarative/qdeclarativemodels.qdoc +++ b/doc/src/declarative/qdeclarativemodels.qdoc @@ -208,7 +208,7 @@ QStringList provides the contents of the list via the \e modelData role: QStringList dataList; dataList.append("Fred"); dataList.append("Ginger"); -dataList.appenf("Skipper"); +dataList.append("Skipper"); QDeclarativeContext *ctxt = view.rootContext(); ctxt->setContextProperty("myModel", QVariant::fromValue(&dataList)); |