Hi all,
Is it possible to find the QObjects that installed event filter on an QObject.
Suppose there are two QObjects
QObject *objA;
QObject *objB;
b->installEventFilter(a);
// using object objA can i retrive the object objB which has installed event filter on it.

Thanks