summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Buhr <andreas.buhr@qt.io>2021-06-24 11:23:31 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-06-24 14:37:55 +0000
commit08753c1d5d4de1fcbb4161645d1c749017fdb844 (patch)
tree9d98087bb3875fc8dd710746c82741b50f3cc5e2 /src
parent781b1f32f0f36006baa3f4b3ea64ceb1a4c9859a (diff)
Remove const from signal
We made a signal const. This does not make sense. Task-number: QTBUG-94407 Change-Id: I372da9c045ba880f8fba48399e441b53c1683e93 Reviewed-by: Edward Welbourne <edward.welbourne@qt.io> Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com> (cherry picked from commit fa664e0b2ad748a5b56de8ca0fd9ee3ed1966e7d) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/animation/qsequentialanimationgroup.h2
1 files changed, 1 insertions, 1 deletions
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);