summaryrefslogtreecommitdiffstats
path: root/src/core/changes/qpropertynodeaddedchange.h
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2016-05-10 14:29:44 +0100
committerSean Harmer <sean.harmer@kdab.com>2016-05-10 19:09:59 +0000
commit7a67525d9f85308d72e6ca1136b6e3af49f955bf (patch)
tree7b929541bb5a49e26a758851830abfb8a60606bd /src/core/changes/qpropertynodeaddedchange.h
parentb6ee562da9314fe2d737284ddef67567f1682619 (diff)
Split out QPropertyValue[Added|Removed] classes
To handle general cases of collection properties. Task-number: QTBUG-51494 Change-Id: Ifa1f27ee823956c308df337f55c3c27fa382ae9a Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/core/changes/qpropertynodeaddedchange.h')
-rw-r--r--src/core/changes/qpropertynodeaddedchange.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/changes/qpropertynodeaddedchange.h b/src/core/changes/qpropertynodeaddedchange.h
index 28334e01d..38b1c3060 100644
--- a/src/core/changes/qpropertynodeaddedchange.h
+++ b/src/core/changes/qpropertynodeaddedchange.h
@@ -50,19 +50,14 @@ namespace Qt3DCore {
class QPropertyNodeAddedChangePrivate;
-// TODO: Split this class into two. One for general values, one specifically for QNodeIds
class QT3DCORESHARED_EXPORT QPropertyNodeAddedChange : public QStaticPropertyValueAddedChangeBase
{
public:
QPropertyNodeAddedChange(QNodeId subjectId, QNode *node);
- QPropertyNodeAddedChange(QNodeId subjectId);
QNodeId addedNodeId() const;
const QMetaObject *metaObject() const;
- void setAddedValue(const QVariant &value);
- QVariant addedValue() const;
-
private:
Q_DECLARE_PRIVATE(QPropertyNodeAddedChange)
};