aboutsummaryrefslogtreecommitdiffstats
path: root/src/quicktemplates/qquickcontentitem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/quicktemplates/qquickcontentitem.cpp')
-rw-r--r--src/quicktemplates/qquickcontentitem.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/quicktemplates/qquickcontentitem.cpp b/src/quicktemplates/qquickcontentitem.cpp
new file mode 100644
index 0000000000..d658f2521a
--- /dev/null
+++ b/src/quicktemplates/qquickcontentitem.cpp
@@ -0,0 +1,30 @@
+// Copyright (C) 2018 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+#include "qquickcontentitem_p.h"
+
+#include <QtQml/private/qqmlmetatype_p.h>
+
+QT_BEGIN_NAMESPACE
+
+/*!
+ \internal
+
+ Helper class that aids debugging by producing more useful debugging output.
+*/
+
+QQuickContentItem::QQuickContentItem(QQuickItem *parent)
+ : QQuickItem(parent)
+{
+ setObjectName(QQmlMetaType::prettyTypeName(parent));
+}
+
+QQuickContentItem::QQuickContentItem(const QObject *scope, QQuickItem *parent)
+ : QQuickItem(parent)
+{
+ setObjectName(QQmlMetaType::prettyTypeName(scope));
+}
+
+QT_END_NAMESPACE
+
+#include "moc_qquickcontentitem_p.cpp"