aboutsummaryrefslogtreecommitdiffstats
path: root/src/quicktemplates2
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@qt.io>2016-07-20 09:50:58 +0200
committerJ-P Nurmi <jpnurmi@qt.io>2016-07-20 09:56:43 +0200
commitb3c6d85479c1646f890cc7aaa94f5f920a051ed6 (patch)
tree86b51655b1409f29a8318f90daa3cbcfa97743fd /src/quicktemplates2
parent3a0ff40bfac794ec16a8386fc1474f1d315a7db3 (diff)
parentdb8b4aa1f1d12430168f818ed259b47654ec715d (diff)
Merge remote-tracking branch 'origin/5.7' into dev
Diffstat (limited to 'src/quicktemplates2')
-rw-r--r--src/quicktemplates2/qquickcontainer.cpp4
-rw-r--r--src/quicktemplates2/qquickstackview_p.cpp1
2 files changed, 3 insertions, 2 deletions
diff --git a/src/quicktemplates2/qquickcontainer.cpp b/src/quicktemplates2/qquickcontainer.cpp
index be70f540..31a92b5d 100644
--- a/src/quicktemplates2/qquickcontainer.cpp
+++ b/src/quicktemplates2/qquickcontainer.cpp
@@ -55,11 +55,11 @@ QT_BEGIN_NAMESPACE
\section2 Using Containers
- Container provides API to \l {addItem}{add}, \l {insertItem}{insert},
+ Container provides an API to \l {addItem}{add}, \l {insertItem}{insert},
\l {moveItem}{move} and \l {removeItem}{remove} items dynamically. The
items in a container can be accessed using \l itemAt() or \l contentChildren.
- Most containers have a concept of a "current" item. The current item is
+ Most containers have the concept of a "current" item. The current item is
specified via the \l currentIndex property, and can be accessed using the
read-only \l currentItem property.
diff --git a/src/quicktemplates2/qquickstackview_p.cpp b/src/quicktemplates2/qquickstackview_p.cpp
index 5d25793e..0f5674c2 100644
--- a/src/quicktemplates2/qquickstackview_p.cpp
+++ b/src/quicktemplates2/qquickstackview_p.cpp
@@ -155,6 +155,7 @@ void QQuickStackElement::incubate(QObject *object)
item = qmlobject_cast<QQuickItem *>(object);
if (item) {
QQmlEngine::setObjectOwnership(item, QQmlEngine::CppOwnership);
+ item->setParent(view);
initialize();
}
}