remove redundant QDialog::eventFilter() reimplementaiton

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2024-06-01 05:52:22 +03:00
parent 2e2f28064e
commit 9e7e026f62
2 changed files with 0 additions and 7 deletions

View file

@ -457,12 +457,6 @@ void QDialog::reject()
done(Rejected);
}
/*! \reimp */
bool QDialog::eventFilter(QObject *o, QEvent *e)
{
return QWidget::eventFilter(o, e);
}
/*****************************************************************************
Event handlers
*****************************************************************************/

View file

@ -77,7 +77,6 @@ protected:
#ifndef QT_NO_CONTEXTMENU
void contextMenuEvent(QContextMenuEvent *);
#endif
bool eventFilter(QObject *, QEvent *);
void adjustPosition(QWidget*);
private:
Q_DECLARE_PRIVATE(QDialog)