Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 387 Bytes

README-install-event-filter.md

File metadata and controls

7 lines (5 loc) · 387 Bytes

install-event-filter

Warns on potential misuse of QObject::installEventFilter(). To install an event filter you should call monitoredObject->installEventFilter(this), but sometimes you'll write installEventFilter(filterObject) by mistake, which compiles fine.

In rare cases you might actually want to install the event filter on this, in which case this is a false-positive.