I'm trying to find documentation about the deep nature of Signals and Slots (which are well documented in the source)...
for instance, connect() is frequently called from 'this', but if 'this' calls:
connect(that, SIGNAL(_something()), other, SLOT(_else()));
connect(that, SIGNAL(_something()), other, SLOT(_else()));
To copy to clipboard, switch view to plain text mode
then is the connection connected to the lifetime of 'this', or is it attached to an internal database so that deleting 'this' will allow the connection to persist?
I'm hoping that deleting 'this' will destroy the connection, but 'this' is separate from 'that' and 'other', so the question is, are connections connected to the creator or the objects?
Bookmarks