summaryrefslogtreecommitdiffstats
path: root/src/render/frontend/qrenderattachment.h
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2015-10-12 20:45:19 +0100
committerPaul Lemire <paul.lemire@kdab.com>2015-10-13 13:19:50 +0000
commit7c971e0e7791ab38d7d3d8ebc25468c44cbe49c5 (patch)
tree53197a9e5eb7501d6f5b497f70c25dad9c265a6f /src/render/frontend/qrenderattachment.h
parent0bfd20ad3b8eb3edec8d6317af9eb5504f8c0871 (diff)
Move Qt3DCore into Qt3DCore namespace
Update other aspects, tests and examples accordingly. Change-Id: Ib1bcf0bdf4f5aec4422dc0c80bfc32b27fb1a317 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/render/frontend/qrenderattachment.h')
-rw-r--r--src/render/frontend/qrenderattachment.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/render/frontend/qrenderattachment.h b/src/render/frontend/qrenderattachment.h
index 49c14b146..b19979c5c 100644
--- a/src/render/frontend/qrenderattachment.h
+++ b/src/render/frontend/qrenderattachment.h
@@ -47,7 +47,7 @@ namespace Qt3DRender {
class QAbstractTextureProvider;
class QRenderAttachmentPrivate;
-class QT3DRENDERERSHARED_EXPORT QRenderAttachment : public Qt3D::QNode
+class QT3DRENDERERSHARED_EXPORT QRenderAttachment : public Qt3DCore::QNode
{
Q_OBJECT
Q_PROPERTY(RenderAttachmentType type READ type WRITE setType NOTIFY typeChanged)
@@ -91,7 +91,7 @@ public:
};
Q_ENUM(CubeMapFace)
- explicit QRenderAttachment(Qt3D::QNode *parent = 0);
+ explicit QRenderAttachment(Qt3DCore::QNode *parent = 0);
~QRenderAttachment();
void setType(RenderAttachmentType type);
@@ -121,8 +121,8 @@ Q_SIGNALS:
void nameChanged();
protected:
- QRenderAttachment(QRenderAttachmentPrivate &dd, Qt3D::QNode *parent = 0);
- void copy(const Qt3D::QNode *ref) Q_DECL_OVERRIDE;
+ QRenderAttachment(QRenderAttachmentPrivate &dd, Qt3DCore::QNode *parent = 0);
+ void copy(const Qt3DCore::QNode *ref) Q_DECL_OVERRIDE;
private:
Q_DECLARE_PRIVATE(QRenderAttachment)