summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMakoto IKEDA <mikeda@sra.co.jp>2014-03-28 14:50:24 +0900
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-04-01 13:26:03 +0200
commit6550c66e13ac730d983cbae991d6f0a022224de6 (patch)
tree88b476164060a2aebe65f7aa0e45e90df7352f0b
parentf5dbc1a1d93ebfdc8da8ff99664d40978afafc19 (diff)
downloadqtdoc-6550c66e13ac730d983cbae991d6f0a022224de6.tar.gz
Fix small typo
QDeclarativeView inherited from QGraphicsView. Change-Id: Ib2f5d5addc132119450ed67c1a62ba8c3f540ced Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
-rw-r--r--doc/src/qmlapp/porting.qdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/qmlapp/porting.qdoc b/doc/src/qmlapp/porting.qdoc
index 37a20b80..c2dea280 100644
--- a/doc/src/qmlapp/porting.qdoc
+++ b/doc/src/qmlapp/porting.qdoc
@@ -210,7 +210,7 @@ Alternatively, the QQuickPaintedItem provides a \c paint() method and can be use
a convenient way to port QDeclarativeItem-based classes that use the QPainter API. Note this method
is less performant than using the \c QSG* classes.
-When porting from QDeclarativeView to QQuickView, note that QDeclarativeItem inherited from
+When porting from QDeclarativeView to QQuickView, note that QDeclarativeView inherited from
QGraphicsView. In contrast, QQuickView inherits from QQuickWindow and uses the QWindow
infrastructure introduced in Qt 5; any QGraphicsView-specific functionality is no longer available.