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>
bb10
Andreas Buhr 2021-06-24 11:23:31 +02:00
parent b3deb6a161
commit fa664e0b2a
1 changed files with 1 additions and 1 deletions

View File

@ -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);