You mean the event filter installation?:
...
myApp->installEventFilter(this);
...
}
return false;
}
MyMainFrame::MyMainFrame() : QMainWindow() {
...
myApp->installEventFilter(this);
...
}
bool MyMainFrame::eventFilter(QObject *o, QEvent *e) {
return false;
}
To copy to clipboard, switch view to plain text mode
The eventFilter function is never called except in those two cases where I hadn't installed an event filter for o. Rather strange! The same happens in SuSE-Linux 10.3/Qt4.3.3.
I am now about to install Qt4.3.4 on Vista, hoping that the problem will disappear in some wondrous way then.
Bookmarks