summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel/qpropertyprivate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/kernel/qpropertyprivate.h')
-rw-r--r--src/corelib/kernel/qpropertyprivate.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/corelib/kernel/qpropertyprivate.h b/src/corelib/kernel/qpropertyprivate.h
index 6f0e563a28..15e54e9ba8 100644
--- a/src/corelib/kernel/qpropertyprivate.h
+++ b/src/corelib/kernel/qpropertyprivate.h
@@ -87,10 +87,9 @@ class Q_CORE_EXPORT QPropertyBindingData
// notification later when the value changes.
mutable quintptr d_ptr = 0;
friend struct QT_PREPEND_NAMESPACE(QPropertyBindingDataPointer);
+ Q_DISABLE_COPY(QPropertyBindingData)
public:
QPropertyBindingData() = default;
- Q_DISABLE_COPY(QPropertyBindingData)
- QPropertyBindingData(QPropertyBindingData &&other) = delete;
QPropertyBindingData(QPropertyBindingData &&other, QUntypedPropertyData *propertyDataPtr);
QPropertyBindingData &operator=(QPropertyBindingData &&other) = delete;
~QPropertyBindingData();
@@ -105,7 +104,7 @@ public:
QPropertyBindingWrapper guardCallback = nullptr);
QPropertyBindingPrivate *binding() const;
- void evaluateIfDirty() const;
+ void evaluateIfDirty(const QUntypedPropertyData *property) const;
void removeBinding();
void registerWithCurrentlyEvaluatingBinding() const;