Fix a missing word in the docs
[profile/ivi/qtdeclarative.git] / src / quick / doc / src / appdevguide / porting.qdoc
index 5843800..6bb2a75 100644 (file)
@@ -27,7 +27,7 @@
 
 /*!
 \page qtquick-porting-qt5.html
-\title QML Application in Qt 5
+\title QML Applications in Qt 5
 \brief Lists the Qt 5.0 changes that affect the existing QML applications
 
 When porting QML-related code from Qt 4.8 to Qt 5, application developers should be aware that
@@ -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}