aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/quick/items/qquickitem.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/quick/items/qquickitem.cpp b/src/quick/items/qquickitem.cpp
index 29b0ed10e6..e568a27ed7 100644
--- a/src/quick/items/qquickitem.cpp
+++ b/src/quick/items/qquickitem.cpp
@@ -1816,10 +1816,10 @@ void QQuickItemPrivate::updateSubFocusItem(QQuickItem *scope, bool focus)
\section1 Custom Scene Graph Items
- All visual QML items are rendered using the scene graph, a
- low-level, high-performance rendering stack, closely tied to
- OpenGL. It is possible for subclasses of QQuickItem to add their
- own custom content into the scene graph by setting the
+ All visual QML items are rendered using the scene graph, the default
+ implementation of which is a low-level, high-performance rendering stack,
+ closely tied to OpenGL. It is possible for subclasses of QQuickItem to add
+ their own custom content into the scene graph by setting the
QQuickItem::ItemHasContents flag and reimplementing the
QQuickItem::updatePaintNode() function.