From fa664e0b2ad748a5b56de8ca0fd9ee3ed1966e7d Mon Sep 17 00:00:00 2001 From: Andreas Buhr Date: Thu, 24 Jun 2021 11:23:31 +0200 Subject: Remove const from signal We made a signal const. This does not make sense. Task-number: QTBUG-94407 Pick-to: 6.2 Change-Id: I372da9c045ba880f8fba48399e441b53c1683e93 Reviewed-by: Edward Welbourne Reviewed-by: Giuseppe D'Angelo --- src/corelib/animation/qsequentialanimationgroup.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/corelib/animation/qsequentialanimationgroup.h') diff --git a/src/corelib/animation/qsequentialanimationgroup.h b/src/corelib/animation/qsequentialanimationgroup.h index 34be474fe2..1dab299a85 100644 --- a/src/corelib/animation/qsequentialanimationgroup.h +++ b/src/corelib/animation/qsequentialanimationgroup.h @@ -67,7 +67,7 @@ public: int duration() const override; Q_SIGNALS: - void currentAnimationChanged(QAbstractAnimation *current) const; + void currentAnimationChanged(QAbstractAnimation *current); protected: QSequentialAnimationGroup(QSequentialAnimationGroupPrivate &dd, QObject *parent); -- cgit v1.2.3