aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJan Kundrát <jkt@flaska.net>2012-10-17 18:27:25 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-05 12:08:24 +0100
commitb01ed0bb882746f57eae3923bcd1cf8c2bd303f7 (patch)
treee1daa0469674b5df5c2bef418af2929a8077c3f0 /src
parentdc1752234f49ca177d22d23d78be040ef629c306 (diff)
Fix a missing word in the docs
The functionality is "*no* longer available", of course. Change-Id: I2c9f2633d74b98c16216f68e3d7e080422cf6506 Reviewed-by: Venugopal Shivashankar <venugopal.shivashankar@digia.com> Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/quick/doc/src/appdevguide/porting.qdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quick/doc/src/appdevguide/porting.qdoc b/src/quick/doc/src/appdevguide/porting.qdoc
index 3ac13cd255..6bb2a75074 100644
--- a/src/quick/doc/src/appdevguide/porting.qdoc
+++ b/src/quick/doc/src/appdevguide/porting.qdoc
@@ -190,7 +190,7 @@ new applications.)
\section3 QDeclarativeItem and QDeclarativeView
When porting to QQuickItem, note that QDeclarativeItem inherited from QGraphicsItem; in contrast,
-QQuickItem inherits directly from QObject, and any QGraphicsItem-specific functionality is longer
+QQuickItem inherits directly from QObject, and any QGraphicsItem-specific functionality is no longer
available. In particular, QQuickItem does not have a \c paint() method for performing custom
rendering through the QPainter API. Instead, in Qt 5, custom rendering should be performed through
the new \c QSG* classes to take full advantage of the scene graph. See the \l {Qt Quick Scene Graph}