summaryrefslogtreecommitdiffstats
path: root/doc/src/declarative/qtprogrammers.qdoc
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2010-04-23 03:52:24 (GMT)
committerMartin Jones <martin.jones@nokia.com>2010-04-23 03:52:24 (GMT)
commitc8359ce7b9ec72c100d8b46f8ac86ec6e8fbed02 (patch)
treece554a355f1a91891fbd1cb388fafa6fb65b54f4 /doc/src/declarative/qtprogrammers.qdoc
parente24aa4af60718e17405871fb3776107adc0b36f1 (diff)
downloadQt-c8359ce7b9ec72c100d8b46f8ac86ec6e8fbed02.zip
Qt-c8359ce7b9ec72c100d8b46f8ac86ec6e8fbed02.tar.gz
Qt-c8359ce7b9ec72c100d8b46f8ac86ec6e8fbed02.tar.bz2
Collection of small doc improvements
Diffstat (limited to 'doc/src/declarative/qtprogrammers.qdoc')
-rw-r--r--doc/src/declarative/qtprogrammers.qdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/declarative/qtprogrammers.qdoc b/doc/src/declarative/qtprogrammers.qdoc
index 05ffeb0..0b40840 100644
--- a/doc/src/declarative/qtprogrammers.qdoc
+++ b/doc/src/declarative/qtprogrammers.qdoc
@@ -62,7 +62,7 @@ QML provides direct access to the following concepts from Qt:
\o QObject signals and slots - available as functions to call in JavaScript
\o QObject properties - available as variables in JavaScript
\o QWidget - QDeclarativeView is a QML-displaying widget
- \o Qt models - used directly in data binding (QAbstractItemModel and next generation QListModelInterface)
+ \o Qt models - used directly in data binding (QAbstractItemModel)
\endlist
Qt knowledge is \e required for \l {Extending QML in C++}, and also for \l{Integrating QML with existing Qt UI code}.
@@ -104,7 +104,7 @@ and exactly how it respond to mouse, key, or touch input, should all be left for
in QML.
It is illustrative to note that QDeclarativeTextEdit is built upon QTextControl,
-QDeclarativeWebView is built upon QWebPage, and ListView uses QListModelInterface,
+QDeclarativeWebView is built upon QWebPage, and ListView uses QAbstractItemModel,
just as QTextEdit, QWebView, and QListView are built upon
those same UI-agnostic components.