Hi, I have two QObjects A and B. Their signals/slots are connected like this: connect(&A, SIGNAL(hello()), &B, SLOT(sayHello())); Now B is deleted. Do I have to call disconnect() or is it ok to leave A connected to the no longer existing object B?