PDA

View Full Version : Emit to specific receiver



matsukan
28th September 2012, 12:54
is possible to emit signal only on specific object ? If I do have three objects to listen signals, is possible to send the signal only one of them?

wysota
28th September 2012, 12:59
If you know who you want to notify, then you don't need signals and slots. Just call the required method of the object directly (or use events in case of objects living in a different thread).