Warning, /sdk/clazy/docs/checks/README-install-event-filter.md is written in an unsupported language. File is not indexed.

0001 # install-event-filter
0002 
0003 Warns on potential misuse of `QObject::installEventFilter()`.
0004 To install an event filter you should call `monitoredObject->installEventFilter(this)`, but sometimes
0005 you'll write `installEventFilter(filterObject)` by mistake, which compiles fine.
0006 
0007 In rare cases you might actually want to install the event filter on `this`, in which case this is a false-positive.