Say I have QWidget::keyPressEvent(QKeyEvent *e)
reimplemented in my subclass.
Is it necessary to call the base class' implementation at the end of it?
Example:
MyWidget::keyPressEvent(QKeyEvent *e)
{
// my event handler...
// now call parent event handler, necessary?
QWidget::keyPressEvent(e);
}
If so, what's the point of doing that?