wrong-qevent-cast
October 7, 2018 ยท View on GitHub
Warns when a QEvent is possibly cast to the wrong derived class via static_cast.
Example:
switch (ev->type()) {
case QEvent::MouseMove:
auto e = static_cast<QKeyEvent*>(ev);
}
Only casts inside switch statements are verified.