dwww Home | Show directory contents | Find package

# wrong-qevent-cast

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.

Generated by dwww version 1.15 on Sat May 18 15:00:45 CEST 2024.