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?
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?
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).
Bookmarks