Details
-
Task
-
Resolution: Moved
-
P2: Important
-
None
-
None
Description
Consider:
var w = new QWidget();
w.event = function(e) {
}
How can one call the base implementation of QWidget::event()?
w.super_event(e);
is one possibility; e.g. generate such functions in the shell class.