summaryrefslogtreecommitdiffstats
path: root/src/core/changes/qpropertyupdatedchange.h
diff options
context:
space:
mode:
authorMike Krus <mike.krus@kdab.com>2019-12-02 17:19:03 +0000
committerMike Krus <mike.krus@kdab.com>2019-12-09 13:40:08 +0000
commit6e448dd5918c70ddfd0d52f62522fa49c02e8ba8 (patch)
treeff938f659a74c3f3609ba556f78411cb64bcc1dc /src/core/changes/qpropertyupdatedchange.h
parent4505f5acbc346a0cea6ccf5e7d02c75c6e3ca4cb (diff)
Deprecate message API
Deprecates the message classes and the public APIs to send/receive them. (deprecates the constructors as deprecating classes breaks syncqt) Change-Id: I4908f15c3c5f1d63969a0f2e11f6ecb22e2e3748 Reviewed-by: Mike Krus <mike.krus@kdab.com>
Diffstat (limited to 'src/core/changes/qpropertyupdatedchange.h')
-rw-r--r--src/core/changes/qpropertyupdatedchange.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/changes/qpropertyupdatedchange.h b/src/core/changes/qpropertyupdatedchange.h
index e0c12f13d..aa0dd9364 100644
--- a/src/core/changes/qpropertyupdatedchange.h
+++ b/src/core/changes/qpropertyupdatedchange.h
@@ -51,7 +51,7 @@ class QPropertyUpdatedChangePrivate;
class Q_3DCORESHARED_EXPORT QPropertyUpdatedChange : public QStaticPropertyUpdatedChangeBase
{
public:
- explicit QPropertyUpdatedChange(QNodeId subjectId);
+ Q3D_DECL_DEPRECATED explicit QPropertyUpdatedChange(QNodeId subjectId);
virtual ~QPropertyUpdatedChange();
QVariant value() const;
@@ -62,7 +62,7 @@ protected:
QPropertyUpdatedChange(QPropertyUpdatedChangePrivate &dd, QNodeId subjectId);
};
-typedef QSharedPointer<QPropertyUpdatedChange> QPropertyUpdatedChangePtr;
+Q3D_DECL_DEPRECATED typedef QSharedPointer<QPropertyUpdatedChange> QPropertyUpdatedChangePtr;
} // namespace Qt3DCore