diff --git a/src/corelib/kernel/qproperty_p.h b/src/corelib/kernel/qproperty_p.h index 53e76412515..7d9bfa3d77e 100644 --- a/src/corelib/kernel/qproperty_p.h +++ b/src/corelib/kernel/qproperty_p.h @@ -314,7 +314,7 @@ protected: }; }; private: - QPropertyBindingError error; + QPropertyBindingError m_error; QMetaType metaType; @@ -400,7 +400,7 @@ public: location.fileName = msg; return location; } - QPropertyBindingError bindingError() const { return error; } + QPropertyBindingError bindingError() const { return m_error; } QMetaType valueMetaType() const { return metaType; } void unlinkAndDeref(); @@ -417,7 +417,7 @@ public: { return static_cast(binding.d.data()); } void setError(QPropertyBindingError &&e) - { error = std::move(e); } + { m_error = std::move(e); } void detachFromProperty() { @@ -834,7 +834,7 @@ struct QUntypedBindablePrivate inline bool QPropertyBindingPrivate::evaluateRecursive_inline(PendingBindingObserverList &bindingObservers, QBindingStatus *status) { if (updating) { - error = QPropertyBindingError(QPropertyBindingError::BindingLoop); + m_error = QPropertyBindingError(QPropertyBindingError::BindingLoop); if (isQQmlPropertyBinding) errorCallBack(this); return false;