aboutsummaryrefslogtreecommitdiffstats
path: root/src/quicktemplates2/qquickcontainer_p_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/quicktemplates2/qquickcontainer_p_p.h')
-rw-r--r--src/quicktemplates2/qquickcontainer_p_p.h18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/quicktemplates2/qquickcontainer_p_p.h b/src/quicktemplates2/qquickcontainer_p_p.h
index 28190f07..16e9c9f6 100644
--- a/src/quicktemplates2/qquickcontainer_p_p.h
+++ b/src/quicktemplates2/qquickcontainer_p_p.h
@@ -59,8 +59,6 @@ class Q_QUICKTEMPLATES2_PRIVATE_EXPORT QQuickContainerPrivate : public QQuickCon
Q_DECLARE_PUBLIC(QQuickContainer)
public:
- QQuickContainerPrivate();
-
static QQuickContainerPrivate *get(QQuickContainer *container)
{
return container->d_func();
@@ -95,15 +93,15 @@ public:
void updateContentWidth();
void updateContentHeight();
- bool hasContentWidth;
- bool hasContentHeight;
- qreal contentWidth;
- qreal contentHeight;
+ bool hasContentWidth = false;
+ bool hasContentHeight = false;
+ qreal contentWidth = 0;
+ qreal contentHeight = 0;
QObjectList contentData;
- QQmlObjectModel *contentModel;
- int currentIndex;
- bool updatingCurrent;
- QQuickItemPrivate::ChangeTypes changeTypes;
+ QQmlObjectModel *contentModel = nullptr;
+ int currentIndex = -1;
+ bool updatingCurrent = false;
+ QQuickItemPrivate::ChangeTypes changeTypes = Destroyed | Parent | SiblingOrder;
};
QT_END_NAMESPACE