Hello!
Here is the situation. Object A has a B and B has a C (A -> B -> C). C emits signals that are actually meant for A, but A doesn't know about C, so I can't connect() the signals from C to A in A. B knows about C, but it doesn't know about A, so I can't connect() C to A there either. For now the only solution I see is connecting C to B and reemitting the signal from B to A. Isn't there something better I can do?
Thanks
Cruz

