From d19d918c60c9b99a081d00a06de9194ac963fa66 Mon Sep 17 00:00:00 2001 From: Fabian Kosmale Date: Fri, 29 Jul 2022 09:22:48 +0200 Subject: [PATCH] QProperty: remove unused overload This overload was only needed to avoid breaking compilation of qtdeclarative. After declarative had been migrated to the new API, it can be safely removed. Pick-to: 6.4 6.3 6.2 Change-Id: Ib540b924178b6a69e3bfd89b7c324fbba79c75ff Reviewed-by: Ulf Hermann --- src/corelib/kernel/qproperty_p.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/corelib/kernel/qproperty_p.h b/src/corelib/kernel/qproperty_p.h index aa5c05a9e9..2fa6cfca0c 100644 --- a/src/corelib/kernel/qproperty_p.h +++ b/src/corelib/kernel/qproperty_p.h @@ -362,13 +362,6 @@ public: bool evaluateRecursive(PendingBindingObserverList &bindingObservers, QBindingStatus *status = nullptr); - // ### TODO: remove as soon as declarative no longer needs this overload - void evaluateRecursive() - { - PendingBindingObserverList bindingObservers; - evaluateRecursive(bindingObservers); - } - bool Q_ALWAYS_INLINE evaluateRecursive_inline(PendingBindingObserverList &bindingObservers, QBindingStatus *status); void notifyRecursive();