remove redundant QPropertyAnimation::event() implementation

shadowed by QVariantAnimation::event() reimplementation

Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
Ivailo Monev 2020-06-29 16:38:52 +00:00
parent d3c1d7baf9
commit 435771058d
2 changed files with 0 additions and 10 deletions

View file

@ -219,15 +219,6 @@ void QPropertyAnimation::setPropertyName(const QByteArray &propertyName)
d->updateMetaProperty();
}
/*!
\reimp
*/
bool QPropertyAnimation::event(QEvent *event)
{
return QVariantAnimation::event(event);
}
/*!
This virtual function is called by QVariantAnimation whenever the current value
changes. \a value is the new, updated value. It updates the current value

View file

@ -61,7 +61,6 @@ public:
void setPropertyName(const QByteArray &propertyName);
protected:
bool event(QEvent *event);
void updateCurrentValue(const QVariant &value);
void updateState(QAbstractAnimation::State newState, QAbstractAnimation::State oldState);