summaryrefslogtreecommitdiffstats
path: root/src/corelib/animation/qsequentialanimationgroup.h
diff options
context:
space:
mode:
authorAndreas Buhr <andreas.buhr@qt.io>2021-06-24 11:23:31 +0200
committerAndreas Buhr <andreas.buhr@qt.io>2021-06-24 16:37:46 +0200
commitfa664e0b2ad748a5b56de8ca0fd9ee3ed1966e7d (patch)
tree07ea05e76f0d037c9f1943f9091eafaa107f866c /src/corelib/animation/qsequentialanimationgroup.h
parentb3deb6a1616582e89a88870f30c69bec74c6baed (diff)
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 <edward.welbourne@qt.io> Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
Diffstat (limited to 'src/corelib/animation/qsequentialanimationgroup.h')
-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);