summaryrefslogtreecommitdiffstats
path: root/src/render/io/qattribute.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/io/qattribute.cpp')
-rw-r--r--src/render/io/qattribute.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/render/io/qattribute.cpp b/src/render/io/qattribute.cpp
index 821a28f1c..c1329fc8c 100644
--- a/src/render/io/qattribute.cpp
+++ b/src/render/io/qattribute.cpp
@@ -50,13 +50,13 @@ namespace Qt3D {
class Qt3D::AttributePrivate
\internal
*/
-AttributePrivate::AttributePrivate(Attribute *qq)
- : QAbstractAttributePrivate(qq)
+AttributePrivate::AttributePrivate()
+ : QAbstractAttributePrivate()
{
}
Attribute::Attribute(QAbstractBufferPtr buf, int type, int count, int offset, int stride)
- : QAbstractAttribute(*new AttributePrivate(this), buf, type, count, offset, stride)
+ : QAbstractAttribute(*new AttributePrivate, buf, type, count, offset, stride)
{
}